Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我使用这样的代码:
<?php echo 'Text'; include("Class/MyClass.php"); echo 'Text'; ?>
此代码仅返回一个“文本”。(包含之前的那个)我没有收到错误(错误报告),并且该代码适用于我的本地 XAMPP。
Debian 6.0 / PHP 5.3.3-7+squeeze15
提前道歉——这不是答案,只是疯狂的猜测。
“Class/MyClass.php”(或它包含的任何文件)包含某处exit()或die()取决于配置的调用。
exit()
die()
在包括之前尝试设置error_reporting(E_ALL)和 ini_set('display_errors', '1')权利。
error_reporting(E_ALL)
ini_set('display_errors', '1')