淺談php字串反轉執行個體詳解

來源:互聯網
上載者:User
本文主要為大家分享一篇淺談php字串反轉 面試中經常遇到的問題,具有很好的參考價值,希望對大家有所協助。一起跟隨小編過來看看吧,希望能協助到大家。

1.單位元組字串反轉

php提供了用於字串反轉的函數strrev()


$str = 'abcdef';echo strrev($str);

2.對於包含中文的多位元組字串需要用到mb_substr()


$str = '字串反轉';function rev($str, $encoding = 'utf-8'){ $len = mb_strlen($str); $result = ''; for ($i = $len-1; $i>=0; $i--){  $result.= mb_substr($str,$i,1,$encoding); } return $result;}echo rev($str);

3.演算法實現 首位交換


$str = 'abcdefg';$len = strlen($str);$times = $len/2;for($i = 0;$i <= $times; $i++ ){ $tmp = $str[$i]; $str[$i] = $str[$len-$i-1]; $str[$len-$i-1] = $tmp;}echo $str;

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.