從C/C++遷移到PHP——判斷字元類型的函數

來源:互聯網
上載者:User
關鍵字 從C/C++遷移到PHP——判斷字元類型的函數

 在C/C++中,標頭檔ctype.h中定義了關於字元類型一組宏,可以得到給定字元的類型。
而php中沒有相關函數。前些天發現在www.mm4.de下載的PHP中提供了一個名為php_ctype.dll的擴充庫,
載入後發現提供一部分此類的函數,特整理出來供大家參考。
 在PHP中正確載入php_ctype.dll檔案後,用可以看到以下資訊:
   ctype
 ctype functions enabled (experimental)
然後就可以使用它所提供的函數了。所有函數的用法同C/C++基本相同,區別在於在C/C++中函數的參數是
字元型(char),而在PHP中函數的參數可以是字串(string)。例如:

$string="123ADAADAD";
if(isalnum($string))
{
echo "只有大小寫字母和數字!";
}

?>

附:php_ctype.dll支援的函數
bool isalnum(string)
bool isalpha(string)
bool iscntrl(string)
bool isdigit(string)
bool isgraph(string)
bool islower(string)
bool isPRint(string)
bool ispunct(string)
bool isspace(string)
bool isupper(string)
bool isxdigit(string)

【本文著作權歸作者凡草0515與奧索網共同擁有,如需轉載,請註明作者及出處】  

  • 相關文章

    聯繫我們

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