require_once()函数无法包含函数()

时间:2012-03-22 12:37:38

标签: php function include absolute-path document-root

的index.php

<?php
require_once('fr.php');
header('Location:'.abspath().directory());
?>

fr.php

<?php
require_once('functions.php');
?>

的functions.php

function abspath()
{
return $_SERVER['DOCUMENT_ROOT'];
}

现在当我去index.php时,它给了我这个错误: -

Fatal error: Call to undefined function abspath() in C:\xampp\htdocs\index.php on line 3

1 个答案:

答案 0 :(得分:0)

嘿所有评论的人都是对的...我不知道为什么会发生这种情况但是当我重新启动我的xampp时它对我来说很好用:) :( / p>

所以这是100%正确的

的index.php

<?php
require_once('fr.php');
header('Location:'.abspath().directory());
?>

fr.php

<?php
require_once('functions.php');
?>

的functions.php

function abspath()
{
return $_SERVER['DOCUMENT_ROOT'];
}