当前位置:  开发笔记 > 编程语言 > 正文

字符串中的零填充数字

如何解决《字符串中的零填充数字》经验,为你挑选了3个好方法。

我需要将单个数字(1到9)转换为(01到09).我可以想到一种方法,但它的大而丑陋和繁琐.我敢肯定必须有一些简洁的方法.有什么建议



1> Konrad Rudol..:

首先,您的描述具有误导性.Double是浮点数据类型.你可能想要用字符串中的前导零填充你的数字.以下代码执行此操作:

$s = sprintf('%02d', $digit);

有关更多信息,请参阅文档sprintf.


@HirenBhut那是完全不同的,*与'sprintf`*无关.检查[整数格式](http://php.net/manual/en/language.types.integer.php),特别是关于八进制数字的部分.

2> LeppyR64..:

还有str_pad




3> Alex..:

使用str_pad的解决方案:

str_pad($digit,2,'0',STR_PAD_LEFT);

php 5.3的基准测试

结果str_pad:0.286863088608

结果sprintf:0.234171152115

码:

$start = microtime(true);
for ($i=0;$i<100000;$i++) {
    str_pad(9,2,'0',STR_PAD_LEFT);
    str_pad(15,2,'0',STR_PAD_LEFT);
    str_pad(100,2,'0',STR_PAD_LEFT);
}
$end = microtime(true);
echo "Result str_pad : ",($end-$start),"\n";

$start = microtime(true);
for ($i=0;$i<100000;$i++) {
    sprintf("%02d", 9);
    sprintf("%02d", 15);
    sprintf("%02d", 100);
}
$end = microtime(true);
echo "Result sprintf : ",($end-$start),"\n";

推荐阅读
小妖694_807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有