PHP substr_replace 替換字串指定位置字元
/*
int mb_strlen ( string $str [, string $encoding ] )
<?php教程
echo substr_replace("Hello world","earth",6); Hello earth
?>
值得一提的,當開始和長度都是負和,長度小於或等於開始,長度將有被設置為0的效果。
<?php
substr_replace('eggs','x',-1,-1); eggxs
substr_replace('eggs','x',-1,-2); eggxs
substr_replace('eggs','x',-1,-2); eggxs
?>
Same as:
<?php
substr_replace('eggs','x',-1,0); eggxs
?>
<?php
substr_replace('huevos','x',-2,-2); huevxos
substr_replace('huevos','x',-2,-3); huevxos
substr_replace('huevos','x',-2,-3); huevxos
?>
Same as:
<?php
substr_replace('huevos','x',-2,0); huevxos
?>
另一個注意,如果長度為負,開始偏移為長度相同的位置,長度(再次)將具有影響被定為0。 (當然,在手冊中提到,當長度為負它實際上代表了之前的立場)
<?php
substr_replace('abcd', 'x', 0, -4); xabcd
?>
Same as:
<?php
substr_replace('abcd','x',0,0); xabcd
?>
<?php
substr_replace('abcd', 'x', 1, -3); axbcd
?>
Same as:
<?php
substr_replace('abcd', 'x', 1, 0); axbcd
?>
看一下參數說明
string 必需。 規定要檢查的字串。
replacement 必需。 規定要插入的字串。
start 必需。 規定在字串的何處開始替換。
正數 - 在第 start 個偏移量開始替換
負數 - 在從字串結尾的第 start 個偏移量開始替換
0 - 在字串中的第一個字元處開始替換
charlist 可選。 規定要替換多少個字元。
正數 - 被替換的字串長度
負數 - 從字串末端開始的被替換字元數
0 - 插入而非替換