Home  >  Article  >  Backend Development  >  PHP 中 有类似 for 10 这种语法吗?

PHP 中 有类似 for 10 这种语法吗?

WBOY
WBOYOriginal
2016-06-06 20:08:21988browse

希望大家先看清楚题目哈,

<code>    for 10
    
    next</code>

这是vb语法,就是做10次;

php的话我是会的,下面都能做到上面的过程:

<code>for($i=0;$i</code>
<code>for(;$i</code>
<code>for(;;)
{
    if($i=10)
        break;
    $i++;
}</code>
<code>while($i</code>

但是,都很啰嗦,请问有简单的写法吗?

回复内容:

希望大家先看清楚题目哈,

<code>    for 10
    
    next</code>

这是vb语法,就是做10次;

php的话我是会的,下面都能做到上面的过程:

<code>for($i=0;$i</code>
<code>for(;$i</code>
<code>for(;;)
{
    if($i=10)
        break;
    $i++;
}</code>
<code>while($i</code>

但是,都很啰嗦,请问有简单的写法吗?

<code class="php">$i = 10;
while($i--) {

}</code>

Readable > Simple. A great writer makes readers comfortable.

<code class="php">$a=10;
while ($a-->0){
    //do something
}</code>

楼主,没必要,代码是写给人看的。
for ($i=0;i

这个是最好的了。

没有,你都说了是 语法 ,vb 也没有 $a . $b 这种语法,对不?

Statement:
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