Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial php下载一个生成所需文件类型(比较大)遇到的问题。

php下载一个生成所需文件类型(比较大)遇到的问题。

Jun 23, 2016 pm 01:49 PM
php download document type

最开始每发现,后来发现数据多了,php脚本就会执行很长时间。

我是简单的把所有数据获取到,然后再去判断符合查找条件的,这样确实很麻烦,但是因为条件有可能为空,我感觉去对每个条件都判断一下是否为空?不为空,就在sql语句中加上太麻烦,就没那么做。(这个有什么号办法也可以告诉我)

正常所有条件都为空,那几个if语句应该不会浪费多长时间,所以就是获取数据库那好2,3万条数据,并遍历这2,3万条数据生成相应格式的字符串(有html,txt等格式)费了很长时间,超过了max_execution_time =30。(我设置很长,等了2分钟多,他也没输出来),超过了那个时间,就直接进入那个脚本,一个白的界面。

所以我的主要问题:

怎么样把那数据导出来,领导的建议是每次读1000条,加个进度条,而网上查到的大部分都是固定的文件,有路径可以直接下的,我这个是生成的,本来是想用ajax(没怎么用过,就知道是异步请求),然后看到有人说ajax不能下载文件,smarty模板,html和php文件分开的,找了很长时间也不知道怎么办,求助各位大神。。


回复讨论(解决方案)

如果是我,也跟你们领导的想法一样,分页去生成。。。

过滤掉传入条件的空项,可用 array_diff
如 $_POST = array_diff($_POST, array(''));
没有了空项,组装 sql 就简单多了

虽然正常都为空,但你不也是在循环中一一判别吗?一万条数据不就要判断数万次吗?

如果没有查询条件,那又何必每次都去组装呢?
在 select 指令中加上 INTO OUTFILE 子句不就直接输出到文件中去了吗

过滤掉传入条件的空项,可用 array_diff
如 $_POST = array_diff($_POST, array(''));
没有了空项,组装 sql 就简单多了

虽然正常都为空,但你不也是在循环中一一判别吗?一万条数据不就要判断数万次吗?

如果没有查询条件,那又何必每次都去组装呢?
在 select 指令中加上 INTO OUTFILE 子句不就直接输出到文件中去了吗。if(!=null)才去循环判断。


我是一次性全取出来了,因为还要生成相应格式的文件,所以循环了那个数组,比如html格式 填个table,tr,td什么的。
条件为空的话,就不执行判断是否符合条件的那个了啊。不是

如果是我,也跟你们领导的想法一样,分页去生成。。。




怎么分?他是一次性导出所有条件相关的内容啊,生成一个临时文件,每次取1000条,放里面,然后最后提供这个临时文件的下载,最后再把这个临时文件删了?

好像是我自己的问题,是下载文件最后的 echo 导致会很卡,跟数据库关系不大。。

所以百度了下,在echo 字符串的前面加入 ob_start(), 在这期间,echo 每条数据,最后flush(),ob_flush(), ob_end_clean()全部输出来,暂时不会需要太久的时间。。

       

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles