给我猜个谜……在while($row = mysql_fetch_assoc($result) and $runningOK)
循环中,如果使用 PHP&&
运算符代替and
then 会mysql_fetch_assoc
严重失败,并且1
在运行时只返回数字。
我已经尝试mysql_fetch_array()
并到位,但我仍然有1
问题。只有当且仅当我用&&
与and
当前while
语句类似的语句替换时,才会返回正确的行。
我在之前、内部和之后放置了调试语句以确保这一点。我想知道这是 PHP 怪癖还是我无法解释的问题。
// Query
$selectQuery = "SELECT * FROM jobs_cache LIMIT 20";
// Run the Selection Query.
$result = mysql_query($selectQuery)
or die('Query Failed: '.mysql_error());
// Loop through results.
$runningOK = TRUE;
$resubmitList = array();
while($row = mysql_fetch_assoc($result) and $runningOK)
{
// Resubmit The Job
try
{
$client->addTaskBackground($row['function_name'],$row['job_data']);
$resubmitList[] = (string)$row['job_cache_id'];
}
catch(Exception $e)
{
echo "Error adding task for job id: " . $row['job_cache_id'];
$runningOK = FALSE;
}
}