简单教程
提交运行
代码编辑器:
<?php $str1 = "Hello"; $str2 = "Hello world!"; echo sprintf("[%s]",$str1) , "<br>"; echo sprintf("[%8s]",$str1) ,"<br>"; echo sprintf("[%-8s]",$str1),"<br>"; echo sprintf("[%08s]",$str1) ,"<br>"; echo sprintf("[%'*8s]",$str1),"<br>"; echo sprintf("[%8.8s]",$str2),"<br>";
运行结果: