例如$smarty.const.'常數',這個就不能用。
其實模板引擎原理上並不複雜,只是把一些模板標籤替換為php中的函數,變量,語法結構罷了。
這次要在ecshop模板中加入引用常數的功能,只需在函數make_var()中加入兩行程式碼
複製程式碼 程式碼如下:
function make_var($val)
{
if (strrpos($val, '.') === false)
{
if (isset( $this->_var[$val]) && isset($this->_patchstack[$val]))
{
$val = $this->_patchstack[$val];
}
$p = '$this->_var['' . $val . '']';
}
else
{
$t = explode('.', $val);
$_var_name = array_shift($t);
if (isset($this->_var[$_var_name]) && isset($this->_patchstack[$_var_name]))
{
$_var_name = $this->_patchstack[$_var_name];
}
if ($_var_name == 'smarty')
{
if($t[0] == 'const') {
return strtoupper($t[1]);
}
$p = $this->_compile_smarty_ref($t);
}
else
{
$ p = '$this->_var['' . $_var_name . '']';
}
foreach ($t AS $val)
{
$p.= '['' . $val . '']';
}
}
return $p;
}
複製程式碼 程式碼如下:
21 if($t[0] == 'const'){
22 return strtoupper($t[1]);
23 }
以上就介紹了ecshop模板 使ecshop模板中可引用常數的實作方法,包括了ecshop模板方面的內容,希望對PHP教程有興趣的朋友有所幫助。