我似乎无法让这个文件在 php 中打开:
我的文件夹结构如下:
/home/www/site/user/index.php
/home/www/site/lib/login.inc.php
我正在尝试在用户 index.php 文件中打开 login.inc.php:
if (!defined('SITE_ROOT') || !defined('USER_ROOT') )
{
define('SITE_ROOT', '../');
define('USER_ROOT', './');
}
require_once SITE_ROOT . 'lib/login.inc.php';
但这不断出现无法打开流错误。