程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php str_pad 函數使用詳解

php str_pad 函數使用詳解

編輯:關於PHP編程

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved