Structural search - find function with argument named $abc
Is it possible to use structural search to find a function that has 1 or more arguments, and any of them is named $abc.
So this would match:
function test ($a, $abc) {}
function test2 ($abc, $a) {}
function test2 ($abc) {}
Please sign in to leave a comment.