定义和用法
str_pad() 函数把字符串填充为新的长度。
语法
str_pad(string,length,pad_string,pad_type)
参数 | 描述 |
---|---|
string | 必需。规定要填充的字符串。 |
length | 必需。规定新的字符串长度。如果该值小于字符串的原始长度,则不进行任何操作。 |
pad_string | 可选。规定供填充使用的字符串。默认是空白。 |
pad_type | 可选。规定填充字符串的哪边。可能的值: STR_PAD_BOTH - 填充字符串的两侧。如果不是偶数,则右侧获得额外的填充。 STR_PAD_LEFT - 填充字符串的左侧。 STR_PAD_RIGHT - 填充字符串的右侧。默认。 |
技术细节
返回值: | 返回被填充的字符串。 |
---|---|
PHP 版本: | 4.0.1+ |
demo
$str = 'test';
show(str_pad($str, 15,'0'));
show(str_pad($str, 15,'0',STR_PAD_BOTH));
show(str_pad($str, 15,'0',STR_PAD_LEFT));
##输出
test00000000000
00000test000000
00000000000test