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) {}

0

请先登录再写评论。