我有一个表单中的数组,其中包含“块”信息,例如
$array = array(id1 => 1
title1 => this title
id2 => 2
title2 => this title 2)
我正在尝试像这样循环遍历数组
$num = 1;
$posid = "id" . $num;
while (array_key_exists($posid, $_POST)) {
echo $posid . "<br>";
$num++;
}
但我一直陷入无限循环。我哪里错了?