language: PHP (php 5.4.4)
date: 326 days 4 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
<?php
 
$string= 'blah blah result.php?whatiwanttoecho';
preg_match_all('/result\.php\?([.\w\W]*?)\s/ui', $string, $matches);
foreach(end($matches) as $key=> $value){
    print '<pre>'.print_r($value, 1).'</pre>';
}
 
?>