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+++";
?>