调用未定义的函数authorize_user()

时间:2016-03-02 16:54:26

标签: php function

我有2个文件,'index.php'和'/includes/app_header.php'

的index.php

<?php

ini_set('display_errors', 1);
error_reporting(E_ALL|E_STRICT);

require('./includes/app_header.php');

authorize_user();

?>

app_header.php

<?   
function authorize_user()
{
    echo "Hello world!";
}
?>

这给了我以下错误:

  

致命错误:未捕获错误:在filepath \ index.php中调用未定义函数authorize_user():8堆栈跟踪:在第8行的filepath \ index.php中抛出#0 {main}。

0 个答案:

没有答案