我有这样的功能
function test()
{
include("test.php");
}
echo test();
test.php的
<?php
//echo 'test1';
return 'test2';
?>
echo 'test1'
有效但return 'test2'
不起作用。
对我来说什么也没有。
答案 0 :(得分:2)
是的,这是可能的,但您还需要从函数中返回该值:
function test()
{
return include("test.php");
}
echo test();