我刚刚在Yii MessageCommand.php中找到了以下代码
$config=require($args[0]);
$translator='Yii::t';
extract($config);
https://github.com/yiisoft/yii/blob/master/framework/cli/commands/MessageCommand.php第82行
我认为要求只能返回真或假。
请有人告诉我这个片段。
答案 0 :(得分:1)
它是包含范围的返回变量(如果有'return'语句):
//index.php
$a = include('a.php');
echo $a;//12
///file a.php
<?php
return 12;