PHP:限制 foreach() 语句?

2021-12-26 00:00:00 limit foreach php

如何限制 foreach() 语句?说我只希望它运行前 2 个 'eaches' 之类的?

How can i limit a foreach() statement? Say i only want it to run the first 2 'eaches' or something?

推荐答案

你可以使用

break;

foreach() if ($tmp++ < 2) {
}

(第二种方案更糟糕)

相关文章