php 版本 < 的 goto 等效项5.3.0?
我需要在代码中使用 goto 运算符,因为我似乎想不出解决方法。但是问题是我的主机只安装了 PHP 版本 5.2.17。
有什么想法吗?
下面是我的代码:
if ($ready !=="y")
{
$check=mysql_query("SELECT `inserted` FROM `team`");
$numrows = mysql_num_rows($check);
$i="0";
while ($i<$numrows && $row = mysql_fetch_assoc($check))
{
$array[$i] = $row['inserted'];
$i++;
}
if (in_array("n", $array))
{
goto skip;
}
else
{
mysql_query("
UPDATE game SET ready='y'
");
}
}
skip:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您想要使用正确的控制字来打破循环:
break< /a> 关键字将完全执行您想要的操作:结束 while 循环的执行。永远不要使用 goto!
You want to use the correct control word to break from the loop:
The break keyword will do exactly what you want: End the execution of the while loop. Never ever ever use a goto!
作为对这篇文章标题的直接回应:
在某些情况下,这个或 goto 可以生成非常整洁和可读的代码。
As a direct response to the title of this post:
In some circumstances, this, or a goto, can make for very tidy and readable code.
首先,您可以使用
break
退出初始循环。其次,如果您需要测试任何内容,请在调用break
之前设置一个变量(必须是全局的而不是本地的)作为标志或指示器,然后执行一个条件测试语句,其中您的skip 行用于执行您需要的任何其他步骤。
First, you could use a
break
to exit your initial loop. Second, if you need to test for anything, set a variable (must be global not local) as a flag or indicator before callingbreak
, then do a conditional test statement where yourskip
line is to perform any additional steps you need.您的代码中有一些反模式。让我们把它清理干净。我将立即解释发生了什么变化。
首先要做的事情是:无需执行查询、获取所有结果,然后循环遍历这些结果 (
in_array
) 来查找特定值。让数据库通过明确查找inserted
为字符串文字"n"
的行来为您完成此操作。因为我们知道我们只会返回
"n"
条记录,所以我们只需要检查是否有任何结果。如果是这样,请运行查询。如果没有"n"
记录,则不会运行UPDATE
。如果您需要知道
UPDATE
已运行,请添加检查:There are a few anti-patterns in your code. Let's clean it up. I'll explain what's been changed in a jiffy.
First things first: There is no need to perform a query, fetch all of the results, then loop through those results (
in_array
) looking for a specific value. Let the database do that for you by expressly looking only for rows whereinserted
is the string literal"n"
.Because we know that we're only getting
"n"
records back, we just need to check if there are any results. If so, run the query. If there are no"n"
records, theUPDATE
isn't run.If you need to know that the
UPDATE
ran, add a check for it: