php str_pad 函数使用详解
作者:bea
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 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+++";
?>
有用 | 无用
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下几个常用的去空、分组、调试数组函数
- PHP 截取字符串 分别适合GB2312和UTF8编码情况
- PHP 操作文件的一些FAQ总结
- php实现从ftp服务器上下载文件树到本地电脑的程序
- PHP6 mysql连接方式说明
- PHP 数据库树的遍历方法
- 一周让你学会PHP 不错的学习资料
- 简化php模板页面中分页代码的解析
- 精通php的十大要点(上)
- PHP 加密/解密函数 dencrypt(动态密文,带压缩功能,支持中文)
- 防止MySQL注入或HTML表单滥用的PHP程序
- php 动态多文件上传
- PHP $_SERVER详解
- php 删除数组元素
- php完全过滤HTML,JS,CSS等标签
- php array_flip() 删除数组重复元素
- PHP mkdir()定义和用法
- php array_intersect()函数使用代码
- php strtotime 函数UNIX时间戳