我想编写一个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() {
}
}
答案 0 :(得分:0)
查找(?<=function_exists\()\w+
并替换'$&'
它会起作用..