我正在向 MySQL 询问数据,但它减慢了整个脚本的速度。但是我不知道如何摆脱这个循环。我尝试将其转换为 PHP 数组,但老实说,经过一天的尝试我失败了。
<?php
$id = '1';
include_once 'include_once/connect.php';
for ($x = 1; $x <= 5; $x++) {
for ($y = 1; $y <= 5; $y++) {
$xy = $x."x".$y;
$pullMapInfo = "SELECT value FROM mapinfo WHERE id='".$id."' AND xy='".$xy."'";
$pullMapInfo2 = mysql_query($pullMapInfo) or die('error here');
if ($pullMapInfo3 = mysql_fetch_array($pullMapInfo2)) {
#some code
} else {
#some code
}
}
}
?>
如何$pullMapInfo2
通过询问一次来使 MySQL 查询脱离循环以缩短加载时间?
如果你想在你的本地主机上触发脚本,你可以 c&p 整个事情:-)