关于HTML_Template_IT包,该怎么解决

WBOY
發布: 2016-06-13 10:11:57
原創
863 人瀏覽過

关于HTML_Template_IT包
IT.php 里有require_once "pear.php" , 
 这意味着要把pear.php 放到HTML/Template/里面么?

------解决方案--------------------
1用
include_path
修改php.ini,需要重启服务
2用set_include_path 或者ini_set.

范例

Example #1 set_include_path() example
// Works as of PHP 4.3.0
set_include_path('/inc');

// Works in all PHP versions
ini_set('include_path', '/inc');
?>
Example #2 Adding to the include path
Making use of the PATH_SEPARATOR constant, it is possible to extend the include path regardless of the operating system.
In this example we add /usr/lib/pear to the end of the existing include_path.
$path = '/usr/lib/pear';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
?>

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板