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.
変数に文字列として格納されている大きな 2 進数があります。このようなもの :
10111100100001010101010101010100000111111111001010101...
8 個のチャンクに分割したいので、これを使用します:chunk_split($text, 8);しかし、chunk_split() は文字列を返します。
chunk_split($text, 8);
すべてのチャンクを配列に格納するにはどうすればよいですか?
配列内に 8 ビットを文字列として格納する場合は、次のようにします。
str_split($text, 8);
または、ビット自体を一連の配列としてチャンクすることもできます。
array_chunk(str_split($str), 8);