注意:未定义的偏移量:在第341行的C:\ xampp \ htdocs \ Hotel \ Manager \ details.php中为0

时间:2018-04-10 16:04:11

标签: php

我在php中有一个数组 数组的内容是

print_r($room_array);

Array ( [1] => 102 );

现在我如何将索引1的值更改为索引0

1 个答案:

答案 0 :(得分:0)

首先,这是一个非常不明确的问题,但我认为这将解决您的问题。

foreach($room_array as $key=>$value) {
    unset($room_array[$key]);
    $room_array[0] = $value;
} 

我知道这是一个非常硬编码且不可扩展的脚本,但问题非常不清楚。