时间:2021-07-01 10:21:17 帮助过:49人阅读
替换正则表达式括号中所匹配的内容。
- /** * 解析注释 */ private function parNotes() { $_patten = '/\{#\}(.*)\{#\}/'; if ( preg_match($_patten, $this->_tplcontent) ) { $this->_tplcontent = preg_replace($_patten, '<!--?php /* \1 */ ?-->', $this->_tplcontent); } }