php字串的有序拆分的相關內容在php中很重要,本篇將介紹php字串的有序拆分的相關操作。
這裡講這幾個函數
chunk_split() :函數把字串分割成一連串更小的部分。
explode():使用字串分割另一個字串
str_split():將字串分割到陣列中
chunk_split()
chunk_split(string,length,end)
參數 說明
string 時必要。規定要分割的字串。
length 可選。數字值,定義字串塊的長度。預設是 76。
end 可選。字串值,定義在每個字串區塊末端放置的內容。預設是 \r\n。
<!--?php $str = "Shanghai"; echo chunk_split($str,1,"."); ?-->
輸入結果:S.h.a.n.g.h.a.i.
explode()
本函數為 implode() 的反函數,使用字串分割另一個字串,並傳回一個陣列。
array explode( string separator, string string [, int limit] )
<!--?php $str = 'one|two|three|four'; print_r(explode('|', $str)); print_r(explode('|', $str, 2)); // 负数的 limit(自 PHP 5.1 起) print_r(explode('|', $str, -1)); ?-->
輸出結果如下:
Array ( [0] => one [1] => two [2] => three [3] => four ) Array ( [0] => one [1] => two|three|four ) Array ( [0] => one [1] => two [2] => three ) str_split() str_split() 将字符串分割为一个数组,成功返回一个数组。 array str_split( string string [, int length] )
參數 # 需要分割的字串
<!--?php $str = 'one two three'; $arr1 = str_split($str); $arr2 = str_split($str, 3); print_r($arr1); print_r($arr2); ?-->
Array ( [0] => o [1] => n [2] => e [3] => [4] => t [5] => w [6] => o [7] => [8] => t [9] => h [10] => r [11] => e [12] => e ) Array ( [0] => one [1] => tw [2] => o t [3] => hre [4] => e )
如何使用php計算出兩個經緯度之間的距離
以上是講解php字串的有序拆分的相關操作的詳細內容。更多資訊請關注PHP中文網其他相關文章!