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.
私はこの変数を持っていますこれ$day = 5;をこのような配列に変換しようとしています
$day = 5;
$array = array(0 => 0, 1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5);
これは可能ですか?
関数を調べrange()ます。
range()
$array = range(0,$day);
古い、1 ベースのソリューション: