php字串的替換,分割和連線方法

2022-10-06 09:24:08 字數 1194 閱讀 9709

字串的替換

1. 執行乙個正規表示式的搜尋和替換

複製** **如下:

mixed preg_replace ( mixed $pattern , mixed $replacemwww.cppcns.coment , mixed $subject [, int $limit = -1 [, int &$count ]] )

搜尋subject中匹配pattern的部分, 以replacement進行替換.

2. 子字串替換

複製** **如下:

mixed str_replace www.cppcns.com( mixed $search , mixed $replace , mixed $subject [, int &$count ] )

該函式返回乙個字串或者陣列。該字串或陣列是將 subject 中全部的 search 都被 replace 替換之後的結果。

字串的分割和連線

通過乙個正規表示式分隔字串

說明1. array preg_split ( string $pattern , string $subject [, int $limit = -1 [, int $flags = 0 ]] )

通過乙個正規表示式分隔給定字串.

2. explode — 使用乙個字串分割另乙個字串

說明:array explode ( string $separator string $string [, int $limit ] )

$str = 'one|two|three|four';

// 正數的 limit

print_r(explode('|', $str, 2));

// 負數的 limit(自 php 5.1 起)

print_r(explode('|', $str, -1));

以上例程會輸出:

array

( [0] => one

[1] => two|three|four

)array

( [0] => one

[1] => two

[2] => three

)3. string implode(string glue, array pieces) ———— 連線陣列稱為字串

$lan=array("a","b","c");

implode("+", $lan);//a+b+c

php替換字串字元,php如何替換字串裡的字元

php替換字串裡字元的方法 1 通過substr replace函式把字串的一部分替換為另乙個字串 2 使用str replace函式將乙個字串替換字串中的另一些字元。php 字串替換 用於從字串中替換指定字串。str replace 使用乙個字串替換字串中的另一些字元 substr replace...

php替換字串中,php 字串替換方法

字串替換是開發過程中經常用的資料處理的方式。下面我們就為大家介紹一下php中字元創的替換方法。substr replace 把字串的一部分替換為另乙個字串 str replace 使用乙個字串替換字串中的另一些字元 substr replace substr replace 函式用於把字串的一部分替...

PHP 分割字串

分割字串 利用 explode 函式分割字串到陣列 複製 如下 source hello1,hello2,hello3,hello4,hello5 按逗號分離字串 hello explode source for index 0 index split函式進行字元分割 分隔符可以是斜線,點,或橫線 ...