首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

php设立环境变量

2012-08-31 
php设置环境变量实例:$g_config[root] dirname(realpath(__FILE__)) set_include_path($g_config[roo

php设置环境变量
实例:

$g_config['root'] =dirname(realpath(__FILE__)); set_include_path($g_config['root'].'/pear'. PATH_SEPARATOR . $g_config['root'] . '/cas' . PATH_SEPARATOR .get_include_path());


批注:
1,realpath(__FILE__)
2,get_include_path()
3,set_include_path()

热点排行