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.
我基本上有二进制,说它的长度是 300。我将如何将其拆分(很像使用爆炸)成 8 位块?我看了一下chunk_split()但它似乎只有一个“结束”参数,而不是一个将它放入数组的选项。或者它可以插入数组吗?
最后的 8 位数字可以低于 8 位(以防有人抄错,它是 4 位),因此不需要验证,只需从头到尾始终保持 8 个数字块。
str_split:
str_split
$chunks = str_split($data, 8);