在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)
以上就介紹了從C/C++遷移到PHP-判斷字元類型的函數,包括了PHP判斷字元類型方面的內容,希望對PHP教程有興趣的朋友有所幫助。