主页 > 编程资料 > ecshop >
发布时间:2015-01-06 作者:apizl 阅读:337次
 Fatal error: Call to undefined function compile_str() in **********的错误时

需要在ecshop系统的includes中的lib_beas.php中定义compile_str函数才行。

将如下代码添加到就可以 lib_base.php

function compile_str($str)

{

$arr = array('<' => '<', '>' => '>');

return strtr($str,$arr);

}

文章由爱资料原创本文地址:https://www.apizl.com/archives/view-332-1.html,转载请以链接形式标明本文地址!
关键字词: