|
Posted by otrWalter@gmail.com on 11/08/07 19:41
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
Which is exactly what I want, for this instance, but if I have this...
new wBug ( $myvar, true ); // <-- this is what $code contains,
this time
I get this...
$myvar, true
I'd like to only get....
$myvar
Actually, I'd like to get each parameter in its own array element of
'$arrMatches'
My RegExp is limited on this one.
Can someone throw me a bone?
Thx
walter
Navigation:
[Reply to this message]
|