我在一些脚本中找到了这个功能,但无法得到它的用途:
class DemoController extends Controller {
public function indexAction() {
$content = include('../index.PHP');
return array ('content' => $content);
}
}
将PHP脚本包含到变量中有什么用?
这是一种设计模式吗?
谁能开车到正确的方向?
谢谢!
解决方法:
我的猜测是index.PHP正在构建页面的标记,然后返回它.这是生成标记的一种很好的简洁方法,并将其作为字符串包含在任何可能想要使用它的脚本中.