duanpu4143 2016-09-27 22:20
浏览 6
已采纳

为什么我的PHP while()里面的while()没有上升?

I'm using this simple while loops inside of a while loop and whats happening is the $x is working how i planned but the $i isnt.

$i = 0;
$x = 0;

while ($i <= 50) {
    while ($x <= 50) {
        echo $i . $x . "<BR/>";
        $x++;
    }
    $i++;
}

I'm getting the response;

00
01
0...
050

but then the script is stopping? $i isn't incrementing and running the while loop 50 more times so i would have

00
01
0...
050
10
11
1...
150
  • 写回答

1条回答 默认 最新

  • duandi8838 2016-09-27 22:23
    关注

    The problem is that you have to initialize $x to 0 at the beginning of the outer while loop. Your $x variable will never enter the inner while loop because $x is already greater than 50

    $i = 0;
    
    while ($i <= 50) {
        $x = 0;
        while ($x <= 50) {
            echo $i . $x . "<BR/>";
            $x++;
        }
        $i++;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 12864只亮屏 不显示汉字
  • ¥20 三极管1000倍放大电路
  • ¥15 vscode报错如何解决
  • ¥15 前端vue CryptoJS Aes CBC加密后端java解密
  • ¥15 python随机森林对两个excel表格读取,shap报错
  • ¥15 基于STM32心率血氧监测(OLED显示)相关代码运行成功后烧录成功OLED显示屏不显示的原因是什么
  • ¥100 X轴为分离变量(因子变量),如何控制X轴每个分类变量的长度。
  • ¥30 求给定范围的全体素数p的(p-2)/p的连乘积值
  • ¥15 VFP如何使用阿里TTS实现文字转语音?
  • ¥100 需要跳转番茄畅听app的adb命令