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.
我需要从 php 文件中编写一大块 html。为此,我将关闭一个初始 php 块(使用'?>'),然后编写 html,然后是新的 php 块。
我需要从第二个 php 块中的第一个 php 块访问变量。
谁能解释最有效的方法来做到这一点?
现在,当我在第二个块中引用在第一个块中分配有非零值的变量时,我只得到一个返回值 0。
谢谢你的帮助。
您应该研究类似 MVC 开发模式的东西。
最简单的方法不是在许多块中输出所有内容,而是附加到最后回显的某个变量。
// code block $html .= '<strong>Some html</strong>'; // other code block $html .= '...'; // Other code // At last, at the end echo $html;