Home > Backend Development > PHP Tutorial > 我的PHP代码运行时感觉像是回到了一九四几年,就是图灵破解二战密码的那个时代。

我的PHP代码运行时感觉像是回到了一九四几年,就是图灵破解二战密码的那个时代。

WBOY
Release: 2016-06-23 13:33:49
Original
907 people have browsed it

我提交代码在服务器上运行,然后等个三四分钟在网页上查看运行的结果。
这完全是上个世纪才会有的事情,这么慢搞得我好没意思。

我要提的问题是:“怎么可以让代码一边运行时,一边显示部分已处理完成的数据结果?”


回复讨论(解决方案)

php 可以边执行边输出的,以前测试过,你可以参考这里面的函数 http://php.net/manual/zh/book.outcontrol.php

那你得先找到慢的原因吧?
如果是在php代码,那你就边计算边输出就是了
如果是在数据库查询,那么查询不结束,你只有干等了。
SQL_BUFFER_RESULT 子句可将查询结果先缓存的临时表,有助于提前解锁和会还结果

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template