本文为大家讲解的是php的str_pad函数的用法,str_pad的作用是用一个字符串填充另一个指定字符串到指定长度,感兴趣的同学参考下. str_pad()函数的作用是:用一个字符串填充另一个指定字符串到指定长度。 string str_pad ( string , int pad_length , string pad_string , int pad_type); string 指定字符串,pad_length指定长度,pad_string用来填充的字符串(可选参数),pad_type指定填充位置(可选参数,STR_PAD_LEFT,STR_PAD_BOTH); 如果pad_string , pad_type均为空,那么就等于默认pad_string 为空格, pad_type就是自动填充在指定字符串的末端. <? $string = "test"; echo str_pad($string , 10); // produces "test "; ?> 其余两个例子: <?
本文为大家讲解的是php的str_pad函数的用法,str_pad的作用是用一个字符串填充另一个指定字符串到指定长度,感兴趣的同学参考下.
str_pad()函数的作用是:用一个字符串填充另一个指定字符串到指定长度。
string str_pad ( string , int pad_length , string pad_string , int pad_type);
string 指定字符串,pad_length指定长度,pad_string用来填充的字符串(可选参数),pad_type指定填充位置(可选参数,STR_PAD_LEFT,STR_PAD_BOTH);
如果pad_string , pad_type均为空,那么就等于默认pad_string 为空格, pad_type就是自动填充在指定字符串的末端.
<?
$string = "test";
echo str_pad($string , 10); // produces "test ";
?>
其余两个例子:
<?
$string = "test";
echo str_pad($string , 10,'+',STR_PAD_LEFT); // produces "++++++test";
?>
<?
$string = "test";
echo str_pad($string , 10,'+',STR_PAD_BOTH); // produces "+++test+++";
?>
声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!