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(1,4,6,88,51,3,5,48,59,4);
さらに、どうすれば最初の値と 3 番目の値の間だけで内破できるでしょうか?
implode(',', $range); implode(',', array_slice($range, 0, 3));