修改一处值传递为引用
This commit is contained in:
parent
e3f30a2735
commit
5ce37d1697
|
@ -133,10 +133,10 @@ class Engine
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 检测是否含有include
|
* 检测是否含有include
|
||||||
* @param $template
|
* @param &$template
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
private function hasInclude($template)
|
private function hasInclude(&$template)
|
||||||
{
|
{
|
||||||
$pattern = '/' . $this->left . 'include\s+file[\s\S]*?=[\s\S]*?[\'"](.*?)[\'"][\s\S]*?\/' . $this->right . '/is';
|
$pattern = '/' . $this->left . 'include\s+file[\s\S]*?=[\s\S]*?[\'"](.*?)[\'"][\s\S]*?\/' . $this->right . '/is';
|
||||||
preg_match($pattern, $template, $matches);
|
preg_match($pattern, $template, $matches);
|
||||||
|
|
Loading…
Reference in New Issue