php分割大数(如爆炸)
我需要 phpexplode() 的功能,但没有分隔符。
例如,将变量“12345”变成一个数组,分别保存每个数字。
这可能吗?我已经用谷歌搜索过,但只找到explode(),这似乎不起作用。
谢谢!
i need the functionality of php explode(), but without the separators.
for example, turning the variable "12345" into an array, holding each number seperately.
is this possible? i've already googled but only found explode(), which doesn't seem to work.
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
php 中的任何字符串:
或(来自 preg_split())手册中的页面
更好:
的基准:
preg_split() 与 str_split()结果
with any string in php:
or (from the preg_split()) page in the manual
EVEN BETTER:
benchmark of preg_split() vs str_split()
results:
如果你真的想创建一个数组,那么使用 str_split(),即,
会导致
If you actually want to create an array, then use str_split(), i.e.,
would result in
您的号码可以转换为字符串,然后像数组一样运行
Your number can be turned into string and then acted like an array