Home > Backend Development > PHP Tutorial > php中限制一条,可多次循环时在累加

php中限制一条,可多次循环时在累加

WBOY
Release: 2016-06-20 12:47:08
Original
975 people have browsed it



循环中的循环明明是limit 0,1;可网页出现的却是累加的。


回复讨论(解决方案)

GetSubList  中 $str 是全局变量
只有 $str .= .... 并没有清除 $str 代码
所以在 GetList 的循环中 GetSubList 返回的是累加的结果
你只需去掉 $str 的全局声明就可以了

GetSubList  中 $str 是全局变量
只有 $str .= .... 并没有清除 $str 代码
所以在 GetList 的循环中 GetSubList 返回的是累加的结果
你只需去掉 $str 的全局声明就可以了


怎么去掉全局声明?

删掉 26 行

或改为 $str = '';

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