Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在重组一个自定义构建的框架,并希望实现类似于 Cakephp 的 $content_for_layout 变量的东西。而不是为每个用户类型单独创建布局。
我想执行包含文件中的内容,然后将其存储到一个变量中,然后在布局文件中回显它。
请建议如何实现?
谢谢
和:
回声评估($内容);
你能执行内容吗(在这种情况下是php)。
我希望能帮助你。
像这样?
文件1.php:
<?php include 'file2.php'; echo $result;
文件2.php:
<?php #do stuff $result = #result of your stuff
或者你想做比这更复杂的事情吗?你的问题不是很清楚。