我正在阅读你的书,从 php 和 mysql 开始,我发现一个错误。在第 3 章第 111 页:
For instance, if require() is placed within an
if statement that evaluates to false, the file would be included anyway.
但我用我的代码对此进行了测试。这不是真的。b.php
<?php
if(false)
{
require "a.php";
}
?>
一个.php
<?php
echo "this is a.php<br>"
?>
我运行 b.php。页面上什么都没有。
我的 php 版本是 5.4.7。那么书上说错了吗?