摘要:使用另一個字符串填充字符串為指定長度該函數返回被從左端右端或者同時兩端被填充到制定長度后的結果。如果的值是負數,小于或者等于輸入字符串的長度,不會發生任何填充,并會返回。如果填充字符的長度不能被整除,那么可能會被縮短。
str_pad
Description(PHP 4 >= 4.0.1, PHP 5, PHP 7)
str_pad — Pad a string to a certain length with another string
str_pad — 使用另一個字符串填充字符串為指定長度
string str_pad ( string $input , int $pad_length [, string $pad_string = " " [, int $pad_type = STR_PAD_RIGHT ]] ) //This function returns the input string padded on the left, the right, or both sides to the specified padding length. If the optional argument pad_string is not supplied, the input is padded with spaces, otherwise it is padded with characters from pad_string up to the limit. //該函數返回 input 被從左端、右端或者同時兩端被填充到制定長度后的結果。如果可選的 pad_string 參數沒有被指定,input 將被空格字符填充,否則它將被 pad_string 填充到指定長度。Parameters input
The input string.
輸入字符串。
pad_lengthIf the value of pad_length is negative, less than, or equal to the length of the input string, no padding takes place, and input will be returned.
如果 pad_length 的值是負數,小于或者等于輸入字符串的長度,不會發生任何填充,并會返回 input 。
pad_stringNote:
pad_typeThe pad_string may be truncated if the required number of padding characters can"t be evenly divided by the pad_string"s length.
如果填充字符的長度不能被 pad_string 整除,那么 pad_string 可能會被縮短。
Optional argument pad_type can be STR_PAD_RIGHT, STR_PAD_LEFT, or STR_PAD_BOTH. If pad_type is not specified it is assumed to be STR_PAD_RIGHT.
可選的 pad_type 參數的可能值為 STR_PAD_RIGHT,STR_PAD_LEFT 或 STR_PAD_BOTH。如果沒有指定 pad_type,則假定它是 STR_PAD_RIGHT。
Return ValuesReturns the padded string.
返回填充后的字符串。
ExamplesSeehttp://php.net/manual/zh/func...
All rights reserved
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/28353.html
摘要:磁盤高速緩存操作系統中使用磁盤高速緩存技術來提高磁盤的速度,對高速緩存復制的訪問要比原始數據訪問更為高效。因此,磁盤高速緩存在邏輯上屬于磁盤,物理上則是駐留在內存中的盤塊。 1. 磁盤高速緩存(Disk Cache) 操作系統中使用磁盤高速緩存技術來提高磁盤的I/O速度,對高速緩存復制的訪問要比原始數據訪問更為高效。例如,正在運行的進程的指令既存儲在磁盤上,也存儲在物理內存上,也被復...
摘要:密鑰長度是位,超過位數密鑰被忽略。跨語言做加密解密經常會出現問題,往往是填充方式不對編碼不一致或者加密解密模式沒有對應上造成。是為了兼容用加密的結果。 最近在對接客戶的CRM系統,獲取令牌時,要用DES方式加密解密,由于之前沒有搞錯這種加密方式,經過請教了百度和谷歌兩個老師后,結合了多篇文檔內容后,終于實現了。 一、DES介紹 DES 是對稱性加密里面常見一種,全稱為 Data Enc...
摘要:輸入兩個數組輸出返回完成后的數組在數組中根據條件取出一段值,并返回。如果要再用遍歷數組,必須使用。返回值數組中當前指針位置的鍵值對并向前移動數組指針。鍵值對被返回為四個單元的數組,鍵名為,,和。 數學函數 1.abs(): 求絕對值 $abs = abs(-4.2); //4.2 輸入: 數字 輸出: 絕對值數字 2.ceil(): 進一法取整 echo ceil(9.999); /...
閱讀 1061·2021-10-11 10:59
閱讀 3611·2021-09-26 09:55
閱讀 906·2019-08-30 15:55
閱讀 2660·2019-08-30 15:44
閱讀 443·2019-08-30 14:06
閱讀 690·2019-08-30 11:26
閱讀 3349·2019-08-30 10:49
閱讀 2503·2019-08-29 12:53