我有index.php
define ('SERVER_ROOT', '/foo');
define ('SITE_ROOT', 'http://localhost');
include (SITE_ROOT . SERVER_ROOT . '/config.php');
在config.php
中echo SITE_ROOT;
返回null。
原因是如果包含http:// localhost而不仅仅是localhost,则不会传递常量。但是我不能将SITE_ROOT设置为localhost ......什么都不会发生
这个问题的系统解决方案是什么?