在编写PHP模板引擎工具类时,以前常用的一个正则替换函数为 preg_replace(),加上正则修饰符 /e,就能够执行强大的回调函数,实现模板引擎编译(其实就是字符串替换)。
详情介绍参考博文:PHP函数preg_replace() 正则替换所有符合条件的字符串
应用举例如下:
public function compile($template) {
// if逻辑
$template = preg_replace("/\/e", "\$this->ifTag('\\1')", $template);
return $template;
}
/**
* if 标签
*/
protected function ifTag($str) {
//$str = stripslashes($str); // 去反转义
return '';
}
}
$template = 'xxxyyyzzz';
$tplComplier = new Template();
$template = $tplComplier->compile($template);
echo $template;
?>
输出结果为:
仔细观察,发现 $user["password"] 中的双引号被转义了,这不是我们想要的结果。
为了能够正常输出,还必须反转义一下,但是,如果字符串中本身含有反转义双引号的话,我们此时反转义,原本的反转义就变成了非反转义了,这个结果又不是我们想要的,所以说这个函数在这方面用的不爽!
后来,发现一个更专业级的 正则替换回调函数 preg_replace_callback()。
回调函数 callback:
一个回调函数,在每次需要替换时调用,调用时函数得到的参数是从subject 中匹配到的结果。回调函数返回真正参与替换的字符串。这是该回调函数的签名:
像上面所看到的,回调函数通常只有一个参数,且是数组类型。
罗列一些有关preg_replace_callback()函数的实例:
Example #1 preg_replace_callback() 和 匿名函数
\s*\w|',
function ($matches) {
return strtolower($matches[0]);
},
$line
);
echo $line;
}
fclose($fp);
?>
如果回调函数是个匿名函数,在PHP5.3中,通过关键字use,支持给匿名函数传多个参数,如下所示:
Example #2 preg_replace_callback() 和 一般函数
?>
Example #3 preg_replace_callback() 和 类方法
如何在类的内部调用非静态函数?你可以按如下操作:
对于 PHP 5.2,第二个参数 像这样 array($this, 'replace') :
private function process($text){
$reg = "/\{([0-9a-zA-Z\- ]+)\:([0-9a-zA-Z\- ]+):?\}/";
return preg_replace_callback($reg, array($this, 'replace'), $text);
}
private function replace($matches){
if (method_exists($this, $matches[1])){
return @$this->$matches[1]($matches[2]);
}
}
}
?>
对于 PHP5.3,第二个参数像这样 "self::replace" :
注意,也可以是 array($this, 'replace')。
private function process($text){
$reg = "/\{([0-9a-zA-Z\- ]+)\:([0-9a-zA-Z\- ]+):?\}/";
return preg_replace_callback($reg, "self::replace", $text);
}
private function replace($matches){
if (method_exists($this, $matches[1])){
return @$this->$matches[1]($matches[2]);
}
}
}
?>
根据上面所学到的知识点,把模板引擎类改造如下:
public function compile($template) {
// if逻辑
$template = preg_replace_callback("/\/", array($this, 'ifTag'), $template);
return $template;
}
/**
* if 标签
*/
protected function ifTag($matches) {
return '';
}
}
$template = 'xxxyyyzzz';
$tplComplier = new Template();
$template = $tplComplier->compile($template);
echo $template;
?>
输出结果为:
正是我们想要的结果,双引号没有被反转义!