fork download
  1. <?php
  2. $mystring = "<area shape=\"circle\" alt=\"\" title=\"\" coords=\"642,1943,28\" href=\"\" target=\"\" />";
  3. $findme = "coords=\"";
  4. $pos = strpos($mystring, $findme);
  5. while($pos>0){
  6. print $mystring."\n";
  7. $mystring = substr($mystring,$pos);
  8. $coords = explode(",", substr($mystring,strpos($mystring, "\"")));
  9. print $coords ."\n";
  10. $pos = strpos($mystring, $findme);
  11. }
  12.  
  13.  
  14.  
  15. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
<area shape="circle" alt="" title="" coords="642,1943,28" href="" target="" />
Array