我有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}。