PHP substr_replace 替換字串指定位置字元

來源:互聯網
上載者:User
關鍵字 網路程式設計 PHP教程

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
?>

&lt;?php


substr_replace('huevos','x',-2,-2); huevxos


substr_replace('huevos','x',-2,-3); huevxos


substr_replace('huevos','x',-2,-3); huevxos


?&gt;

Same as:

&lt;?php


substr_replace('huevos','x',-2,0); huevxos


?&gt;

另一個注意,如果長度為負,開始偏移為長度相同的位置,長度(再次)將具有影響被定為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 - 插入而非替換

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.