如果我在包含的 php 文件中的函数之外使用“return”,则 PHP 会跳过文件的其余部分。
我可以从函数内部执行此操作吗?
测试1.php:
<?php
echo 'test1';
include('test2.php');
echo 'test2'
?>
test2.php
<?php
function returner()
{
return_included_file;
}
returner();
//I don't want this to be executed
echo 'test';
?>
所需的输出:
test1
test2