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 code输出结束时显示在屏幕上。
php
php code
我有一个表单,在发送时会提交大量带有foreach. php 代码发送的每封邮件(因此 foreach 的每个循环),都会显示echo带有successor的邮件error。
foreach
echo
success
error
问题是echos只有在 php 发送所有邮件后才会显示所有内容。
echos
所以在表单提交和输出之间,我有大约 60-90 秒的等待时间。
是否可以在执行所有代码时而不是在循环工作时将代码输出到用户屏幕?
谢谢你。