Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の配列があるとしましょう:
Array ( [0] => Jonny Cash [1] => Robert Smith )
次のようなものを取得するために、配列キーをインクリメントするにはどうすればよいですか。
Array ( [1] => Jonny Cash [2] => Robert Smith )
前もって感謝します!
配列の先頭に null をプッシュしてから削除します。
array_unshift($list, null); unset($list[0]);
$array = array(1 => 'Jonny Cash', 2 => 'Robert Smith'); print_r($array);
出力:
配列 ( [1] => ジョニー キャッシュ [2] => ロバート スミス)