0

我定义了这两个常量:

define( 'SITE_ROOT',$_SERVER['DOCUMENT_ROOT'] . '/' );

define( 'APP_ROOT', str_replace('\\', '/', dirname(dirname(__FILE__))) . '/' );

我的文件夹结构是这样的:

Site_Root (exampledomain.com)
   - docs
   - tests
   - app
      - assets
      - libs
      - core

如果我使用类似的东西:

$appassets = APP_ROOT.'assets/css/'.$filename.'.css';

它与路径相呼应:

http://exampledomain.com/var/www/app/assets/css/core.css

如何var/www/从回显路径中摆脱这一点?

我希望“SITE_ROOT”的值为“ http://exampledomain.com/

并且“APP_ROOT”的值为“ http://exampledomain.com/app/

我怎样才能做到这一点?

4

1 回答 1

2
define( 'APP_ROOT', '/app/');

如果你真的需要一个常数

于 2013-08-07T13:20:24.410 回答