如果我想将控制权从包含文件返回到主文件,我可以return
在全局范围内使用。
主文件
<?php
include 'another-file.php';
另一个文件
<?php
return; // returns control to main file
但是,如果我需要从类方法内部返回控制权,我该怎么办?
另一个文件
<?php
class Foo {
function bar() {
if ( $some_value ) {
return; // will only return from function, not return whole file
}
}
}