如果$app['serviceFactory'] = $app->share(function () {
return new CApiServiceFactory;
});
....
// later, when you need the API:
API::setApiServiceFactory($app['serviceFactory']);
条件为True,我想知道如何从0开始for
- 循环
if
Break在这里没有帮助,因为有了break我只能离开if Condition,但我也想从头开始for循环。
答案 0 :(得分:0)
你可以试试这个而不是for循环。
i = 0
while i < 3:
if a == 1:
i = 0
i += 1
如果等于1
,这将继续遍历循环答案 1 :(得分:-1)
我想你可能会这样写
if 1 == a:
for i in range(3):
pass