>  기사  >  백엔드 개발  >  php多次引用出错

php多次引用出错

WBOY
WBOY원래의
2016-06-06 20:18:491449검색

以前没有这个问题,php升级到5.4出现这个问题

config.php中代码

<code><?php define('host','localhost');
define('username','root');
define('password','root');
define('database','daan');
?></code>

connect.php中代码

<code><?php require_once 'config.php';
$mysqli = new mysqli(host,username,password,database);
if($mysqli->connect_error)
{
    die('Connect Error:'.$mysqli->connect_error);
}
$mysqli->set_charset('utf8');
?></code>

index.php中的代码

<code><?php require_once 'connect.php';
?></code>

接下来问题来了,如果我在index.php中单单引入connect.php,php报错,提示我host username password datebase这几个常量没有定义
但如果这样

<code><?php require_once 'config.php';
require_once 'connect.php';
?></code>

就正常了,请问这是怎么回事,如何解决

回复内容:

以前没有这个问题,php升级到5.4出现这个问题

config.php中代码

<code><?php define('host','localhost');
define('username','root');
define('password','root');
define('database','daan');
?></code>

connect.php中代码

<code><?php require_once 'config.php';
$mysqli = new mysqli(host,username,password,database);
if($mysqli->connect_error)
{
    die('Connect Error:'.$mysqli->connect_error);
}
$mysqli->set_charset('utf8');
?></code>

index.php中的代码

<code><?php require_once 'connect.php';
?></code>

接下来问题来了,如果我在index.php中单单引入connect.php,php报错,提示我host username password datebase这几个常量没有定义
但如果这样

<code><?php require_once 'config.php';
require_once 'connect.php';
?></code>

就正常了,请问这是怎么回事,如何解决

看下这个应该对你有帮助,在回家的路上没法码字
http://m.111cn.net/art-42982.htm

试试将定义的常量名改成大写的试试吧

new mysqli(host,username,password,database);
new mysqli($host,$username,$password,$database);
懂了吗?

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.