fork download
  1. <?php
  2. $str = "-638,-663,28 + 180,-60,50 + 838,-473,22 + 21,230,11 + 35,162,28 + 88,-33,22 + -346,632,22";
  3. $coords = explode("+", $str);
  4. foreach($coord as $coords)
  5. {
  6. list($x, $y, $r) = split(',', trim($coord));
  7. print("X:".$x." Y:".$y." R:".$r."\n");
  8. }
  9.  
  10.  
  11. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
Warning: Invalid argument supplied for foreach() in /home/OTxdNL/prog.php on line 4