当前位置: 代码迷 >> PHP >> php设立环境变量
  详细解决方案

php设立环境变量

热度:96   发布时间:2016-04-29 00:08:04.0
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()
  相关解决方案