PHP 中如何将整数转换为数组?
将整数转换为数字数组的最简单方法是什么?
示例:
2468
应生成 array(2,4,6,8)
。
What would be the most simple way to convert an integer to an array of numbers?
Example:
2468
should result in array(2,4,6,8)
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
str_split
和intval
:这将给出以下输出:
演示
You can use
str_split
andintval
:Which will give the following output:
Demo
使用 str_split() 函数
http://php.net/manual/en/function。 str-split.php
use str_split() function
http://php.net/manual/en/function.str-split.php
您可以通过对数字取模 10 来截掉最后一位数字。
不要告诉任何人!
You can cut-off the last digit by taking the number modulo 10.
Don't tell it to anyone!
示例 #2 将字符串拆分为组成字符
Example #2 Splitting a string into component characters