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 脚本,显示响应,然后启动另一个 php 脚本,然后显示它
我在 php 中有两个函数我想显示第一个函数的响应以减少加载时间
示例伪代码
Function hello1() { echo 'hello1'; [...] }
显示响应并运行另一个函数
Function hello2() { echo 'hello2' [...] }
所有 php 方法都将在呈现 html 页面之前执行。您是否可以考虑 Javascript 事件处理或使用 Ajax 请求“注入”到基于 php 的代码隐藏文件的方法。
问候,托博