在 PHP 中模拟 while 循环

发布于 2024-11-15 21:13:01 字数 263 浏览 1 评论 0原文

我正在使用 smarty 版本 2 的系统中构建一些东西。我正在编写的代码需要使用 while 循环,但是,while 循环直到版本 3。

您可以使用 forforeach 之类的东西来模拟 while 循环吗?也许使用两个条件循环或过早中断?我有什么选择?

PS:安装插件来提供 while 循环功能不是一种选择。

I'm building something in a system that utilizes smarty version 2. The code I'm writing needs to utilize a while loop, however, the while loop was not introduced until version 3.

Can you simiulate a while loop using something like for or foreach? Maybe looping using two conditions or breaking out prematurely? What are my options?

PS: Installing the plugin to provide while loop functionality is not an option.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘和柠 2024-11-22 21:13:01

for 循环 while 循环如下所示:

for(;(put your while condition here);){

}

演示: http://codepad.org/KPBUk4ZN

阅读此处将本机 PHP 转换为 smarty

A for loop while loop is like so:

for(;(put your while condition here);){

}

Demo: http://codepad.org/KPBUk4ZN

Read here for converting native PHP to smarty

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文