如何在PHP中使单/双腿字符串最少为五个字符?
对于我的网站,我需要执行以下操作
$value = "1|22";
$explode = explode("|",$value);
$a = $explode[0];
$b = $explode[1];
这将按预期返回 a 和 b 作为 1 和 22。但我需要它们将 $a 返回为 00001,将 $b 返回为 00022。因此,如果它们包含的字符少于 5 个,我想添加 0 作为前缀,使其成为五位数字。我怎样才能做到这一点?
For my site, I need to do the following
$value = "1|22";
$explode = explode("|",$value);
$a = $explode[0];
$b = $explode[1];
This will return a and b as 1 and 22 as expected. But I need them to return $a as 00001 and $b as 00022. So if they contain less than 5 characters, I want to add 0 as prefix to it to make it a five-digit number. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PHP5.3,您可以像这样在前面添加
0
并分配
At all(仍然是 php5.3)
With PHP5.3 you can prepend the
0
like thisand assigning
At all (still php5.3)
另一种方法。
Another method.