首页 > 资讯列表 > 编程/数据库 >> PHP

php str_pad 函数使用详解

PHP 2014-12-13 09:30:09 转载来源: 网络整理/侵权必删

本文为大家讲解的是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 "; ?> 其余两个例子: <?

本文为大家讲解的是phpstr_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+++";
?>

 


标签: php str pad 函数 使用 详解


声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!

站长搜索

http://www.adminso.com

Copyright @ 2007~2024 All Rights Reserved.

Powered By 站长搜索

打开手机扫描上面的二维码打开手机版


使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

站长搜索目录系统技术支持