php – 这样的功能背后可能有什么实际的想法?
作者:互联网
我在一些脚本中找到了这个功能,但无法得到它的用途:
class DemoController extends Controller {
public function indexAction() {
$content = include('../index.php');
return array ('content' => $content);
}
}
将php脚本包含到变量中有什么用?
这是一种设计模式吗?
谁能开车到正确的方向?
谢谢!
解决方法:
我的猜测是index.php正在构建页面的标记,然后返回它.这是生成标记的一种很好的简洁方法,并将其作为字符串包含在任何可能想要使用它的脚本中.
见:http://php.net/manual/en/function.include.php#example-158
标签:php,wrapping,wrap 来源: https://codeday.me/bug/20190519/1137638.html