|
Posted by Steve on 11/08/07 20:23
<otrWalter@gmail.com> wrote in message
news:1194550910.202651.104320@t8g2000prg.googlegroups.com...
> Note: $code is a single line of code that the previous segment of this
> method has located.
>
> I have this...
>
> preg_match('/\bnew wBug\s*\(\s*(.+)\s*\);/i', $code, $arrMatches);
> $results = $arrMatches[1];
>
>
> it will find this...
>
> new wBug ( $myvar ); // <-- this is what $code contains
>
> and it will give me...
>
> $myvar
wait, wait, wait. so you are opening what apparently is a php script and
parsing it?
try:
/new\s+wBug\s?[^(]*\(\s*([^,)]*)[,)]/i
[Back to original message]
|