PHP头条
热点:

关于str_pad




问题
关于str_pad
解决方法
代码是这样写的

$the_max = 32;

$the_max = (int)intval(strlen($the_max));



print(str_pad('1',$the_max,'0',STR_PAD_LEFT));

?>


复制代码其结果还是1,这是怎么回事?

[ ]


参考答案
没有啊,我这测试是对的啊01
参考答案
原帖由 lsx220 于 2009-1-4 02:03 发表 [url=http://bbs.111cn.cn/redirect.php?goto=findpost&pid=814107&ptid=100305]链接标记[img]http://bbs.111cn.cn/images/common/back.gif[/img][/url]
没有啊,我这测试是对的啊01
我又很离奇的正确了,真TM见鬼了。

www.phpzy.comtrue/php/30237.htmlTechArticle关于str_pad 问题 关于str_pad 解决方法 代码是这样写的 $the_max = 32; $the_max = (int)intval(strlen($the_max)); print(str_pad('1',$the_max,'0',STR_PAD_LEFT)); ?> 复制代码其结果还是1,这是怎么回事? [ ] 参考答...

相关文章

    暂无相关文章

PHP之友评论

今天推荐