在php中,陣列和字串可以進行轉換,今天我們就來介紹一下陣列和字串進行轉換的方法,有需要的小夥伴可以參考參考。
方法介紹:
function implode ($glue = "", array $pieces) {}
主要有兩個參數
一個是連接符號(glue:膠水的意思),預設是空字串
一個是陣列
$test = array("hello","world","php"); echo implode("-",$test);
結果:
#hello-world-php
如果是K-V形式的陣列呢?
$test = array("h"=>"hello","w"=>"world","p"=>"php"); echo implode("-",$test);
結果還是
hello-world-php
說明還是只對value有作用。
function explode ($delimiter, $string, $limit = null) {}
explode (爆炸,可能是把這個字串炸開?)
#參數解釋:
delimiter,分隔符號
limit
文件google翻譯結果:
如果limit設定為正,則傳回的陣列將包含最大限制元素,最後一個元素包含字串的其餘部分。
個人理解:
limit 限制分割的份數,最後一份為剩下的字串分割後剩下的,當然如果為1的話,就是字串本身(已經過實驗)
程式碼示範:
$str="hello-world-php"; $result = explode("-", $str); var_dump($result); $result = explode("-", $str,2); var_dump($result);
輸出結果:
array(3) { [0]=> string(5) "hello" [1]=> string(5) "world" [2]=> string(3) "php" } array(2) { [0]=> string(5) "hello" [1]=> string(9) "world-php" }
可能字串不用分割,但需要把每個字元拿出來,也就是一個一個讀出來
原始文檔:
** * Convert a string to an array * @link http://php.net/manual/en/function.str-split.php * @param string $string <p> * The input string. * </p> * @param int $split_length [optional] <p> * Maximum length of the chunk. * </p> * @return array If the optional split_length parameter is * specified, the returned array will be broken down into chunks with each * being split_length in length, otherwise each chunk * will be one character in length. * </p> * <p> * false is returned if split_length is less than 1. * If the split_length length exceeds the length of * string, the entire string is returned as the first * (and only) array element. * @since 5.0 */ function str_split ($string, $split_length = 1) {}
部分翻譯:
數組如果指定了可選的split_length參數,則傳回的數組將被分解為長度為split_length的區塊,否則每個區塊將是一個字元長度。
Convert a string to an array,這不就是把字串轉為數組嘛,用法沒啥可說的
現在我想試一試,如果是5個長度的字符串,按兩位讀取,不足兩位時,最後一位是否保留?
#當然推測來說為了數據的完整性,應該是要保留的。
$str = "hello"; var_dump(str_split($str,2));
結果也如我的推測
array(3) { [0]=> string(2) "he" [1]=> string(2) "ll" [2]=> string(1) "o" }
推薦學習:php影片教學
以上是PHP中數組和字串如何進行轉換(必看)的詳細內容。更多資訊請關注PHP中文網其他相關文章!