我试图在多维数组中增加计数但没有成功。
if ($upload) {
if (is_array($upload['tmp_name'])) {
// $upload is a multi-dimensional array:
$count = 1;
foreach ($upload['tmp_name'] as $index => $value) {
$filename = $upload['name'][$index];
echo $filename;
//the filename gets echoed and it is different each time as expected
// example: house.jpg car.png
echo $count;
// count always gets echoed as 1 and never increments.
$count++;
}
}
}
我想获取计数,以便将文件存储为house_1.jpg,car_2.png等。
我认为这很容易解决,但我不熟悉多维数组,我也无法转储数组内容以查看它是如何构造的,因为它是在脚本内部我不能访问。
我很感激帮助。非常感谢你