fork(1) download
  1. <?php
  2.  
  3. $line = 'Showing 2 tracked objective(s) for lluiscab:- rcon: 4 (rcon)- test: 5678 (test)';
  4.  
  5. preg_match_all('/(\w+):\s*(\d+)/', $line, $matches, PREG_SET_ORDER);
  6. $results = array();
  7. foreach ($matches as $match) {
  8. $results[$match[1]] = intval($match[2]);
  9. }
  10.  
  11. print_r($results);
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Array
(
    [rcon] => 4
    [test] => 5678
)