文章出處

1  strcmp — 二進制安全字符串比較

int strcmp  ( string $str1  , string $str2  )

 注意該比較區分大小寫。

2  strcasecmp — 二進制安全比較字符串(不區分大小寫)

int strcasecmp  ( string $str1  , string $str2  )

3 substr_compare — 二進制安全比較字符串(從偏移位置比較指定長度)

int substr_compare  ( string $main_str  , string $str  , int $offset  [, int $length  [, bool $case_insensitivity  = false  ]] )

substr_compare() 從偏移位置 offset 開始比較 main_strstr,比較長度為 length 個字符。 

<?php
 echo  substr_compare ( "abcde" ,  "bc" ,  1 ,  2 );  // 0
 echo  substr_compare ( "abcde" ,  "de" , - 2 ,  2 );  // 0
 echo  substr_compare ( "abcde" ,  "bcg" ,  1 ,  2 );  // 0
 echo  substr_compare ( "abcde" ,  "BC" ,  1 ,  2 ,  true );  // 0
 echo  substr_compare ( "abcde" ,  "bc" ,  1 ,  3 );  // 1
 echo  substr_compare ( "abcde" ,  "cd" ,  1 ,  2 );  // -1
 echo  substr_compare ( "abcde" ,  "abc" ,  5 ,  1 );  // warning
 ?> 

  


文章列表




Avast logo

Avast 防毒軟體已檢查此封電子郵件的病毒。
www.avast.com


arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()