如此处所述php.net/return,有一个选项可以停止执行包含 'return' 语句。
谁能告诉我为什么这样做如下所述
// test1.php
include 'test2.php';
var_dump(class_exists('TestClass_ShouldntBeDefined'));
// test2.php
return;
class TestClass_ShouldntBeDefined { }
// 跑
$ php -f test1.php
bool(true)
为什么这是真的?
当 test2.php 更改为任何其他形式的代码时执行 ( if(true) { ... }
)
return;
{
class TestClass_ShouldntBeDefined { }
}
然后它按预期工作
$ php -f test1.php
bool(false)
PHP版本
$ php -v
PHP 5.4.7 (cli) (built: Sep 13 2012 04:20:14)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend Technologies
with Xdebug v2.2.1, Copyright (c) 2002-2012, by Derick Rethans