内部 foreach 循环完成后,外部 while 循环永远不会恢复。当内部完成时,文件向命令报告,就好像它已经完成一样。它从不回显“+++++++”。
该脚本旨在从 api 中提取一些数据并将该数据保存到表中,api 以 1000 的批次返回记录,因此外部 while 循环提取多组 1000。脚本多次返回“已保存”但从不'++++++'。有任何想法吗?
while ($iterations > 0) {
$results = json_decode(file_get_contents("http://foo.bar?start=$start$limit=1000"), true);
foreach ($results['SearchResult']['Records'] as $result) {
//search table
$query = "SELECT id from sometable where name = '".$result['something']."'";
$res = mysql_query($query, $conn) or die(mysql_error());
$branch = mysql_fetch_assoc($res) or die(mysql_error());
//save to table
$query = "INSERT INTO `table` some values)";
if (mysql_query($query, $conn) or die(mysql_error())) {
echo 'SAVED';
}
}
$start = $start+1000;
$iterations--;
echo "++++++++++++++++++++";
}