使用正则表达式修复使用未定义的常量“通知?

时间:2018-06-07 06:47:22

标签: php regex

我想编写一个regex表达式,可以修复我在下面得到的未定义的常量通知,这是我想要实现的一个例子。

if(!function_exists(foo)) {
    function foo() {

    }
}
if(!function_exists(foo2)) {
    function foo2(){

    }
}

使用正则表达式我希望它看起来像

if(!function_exists('foo')){
    function foo() {

    }
}
if(!function_exists('foo2')) {
    function foo2() {

    }
}

1 个答案:

答案 0 :(得分:0)

查找(?<=function_exists\()\w+

并替换'$&'

它会起作用..