php從指定的開始位置比較兩個字串的函數substr_compare()

來源:互聯網
上載者:User

執行個體

比較兩個字串:

<?phpecho substr_compare("Hello world","Hello world",0);?>

定義和用法

substr_compare() 函數從指定的開始位置比較兩個字串。

提示:該函數是二進位安全和選擇性區分大小寫。

文法

substr_compare(string1,string2,startpos,length,case)
參數 描述
string1 必需。規定要比較的第一個字串。
string2 必需。規定要比較的第二個字串。
startpos 必需。規定在 string1 中的何處開始比較。如果為負數,則從字串末端開始計數。
length 可選。規定在 string1 中參與比較的字元數。
case 可選。一個布爾值,規定是否執行區分大小寫比較:
  • FALSE - 預設。區分大小寫

  • TRUE - 不區分大小寫

技術細節

傳回值: 該函數返回:
  • 0 - 如果兩字串相等

  • <0 - 如果 string1 (從開始位置 startpos)小於 string2

  • >0 - 如果 string1 (從開始位置 startpos)大於 string2

如果 length 大於或等於 string1 的長度,則該函數返回 FALSE。
PHP 版本: 5+
更新日誌: 自 PHP 5.1 起,允許使用負數的 startpos。

更多執行個體

執行個體 1

比較兩個字串,當 string1 中用於比較的開始位置為 6 時:

<?phpecho substr_compare("Hello world","world",6);?>

執行個體 2

使用所有的參數:

<?phpecho substr_compare("world","or",1,2); echo substr_compare("world","ld",-2,2); echo substr_compare("world","orl",1,2); echo substr_compare("world","OR",1,2,TRUE); echo substr_compare("world","or",1,3); echo substr_compare("world","rl",1,2);?>

執行個體 3

不同的傳回值:

<?phpecho substr_compare("Hello world!","Hello world!",0); // the two strings are equalecho substr_compare("Hello world!","Hello",0); // string1 is greater than string2echo substr_compare("Hello world!","Hello world! Hello!",0); // str1 is less than str2?>
相關文章

聯繫我們

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