如何使循环跳4步

时间:2015-09-01 23:53:26

标签: php for-loop

我想在php中创建一个像这样的for循环

for($x=1; $x<=100; $x+4)

因此它的外形将像这样1 4 8 12等

此代码无效,这就是为什么我要求帮助:)

2 个答案:

答案 0 :(得分:7)

for($x=1; $x<=100;$x+=4)

将您的上一个expr更改为$x+=4 你的代码的问题是$ x没有增加。

答案 1 :(得分:0)

如果你希望它以1 4 8 12的方式递增...你可以尝试这个有点非常规的代码,因为你想在$ x = 1时包括

if (!DiasAgendados.Contains(agendar_fecha))
            {
                diasAgendados.Add(agendar_fecha);
                RaisePropertyChanged("DiasAgendados");
            }