PHP兩個字串比較(人為出錯),兩字串類型和資料表面相等,但strcmp()結果不為0

來源:互聯網
上載者:User

標籤:style   class   blog   http   tar   color   


PHP中,比較兩個字串是否相等用:strcmp();
PHP strcmp() 函數

PHP String 函數

定義和用法

strcmp() 函數比較兩個字串。

該函數返回:

  • 0 - 如果兩個字串相等
  • <0 - 如果 string1 小於 string2
  • >0 - 如果 string1 大於 string2
文法strcmp(string1,string2)
參數 描述
string1 必需。規定要比較的第一個字串。
string2 必需。規定要比較的第二個字串。
提示和注釋

注釋:該函數是二進位安全的,且對大小寫敏感。


來源: <http://www.w3school.com.cn/php/func_string_strcmp.asp>  
個人問題:
現有字串 $a 和 $b通過 echo 輸出,兩個字串資料值相等通過 gettype() 輸出,兩個字串的資料類型相同且為 string
但 strcmp($a, $b) 卻不等於 0 ; 問題解決:
通過 strlen() 分別查看 $a 和 $b 的字串長度,發現長度不相等
我原本是資料庫操作,$a 為插入資料庫中的字串,$b 為輸入的字串通過比較,發現 $a 長度比 $b 大1,故推測是資料庫插入操作可能出現了問題經查證,是插入語句中多了一個空格







來自為知筆記(Wiz)

聯繫我們

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