在C/C 中,頭檔ctype.h中定義了關於字元類型一組宏,可以得到給定字元的類型。
而PHP中沒有相關函數。前些天發現在www.mm4.de下載的PHP中提供了一個名為php_ctype.dll的擴充函式庫,
載入後發現提供一部分此類的函數,特整理出來供大家參考。
在PHP中正確載入php_ctype.dll檔案後,用可以看到以下資訊:
ctype
ctype functions enabled (experimentald)
ctype functions enabled (experimentald)
然後可以使用🎜它所提供的函數了。所有函數的用法同C/C 基本上相同,差異在於在C/C 中函數的參數是
字元型(char),而在PHP中函數的參數可以是字串(string)。例如:
$string="123ADAADAD";
if(isalnum($string))
{
echo "只有大小寫字母和數字!";
}
?>
附:php_ctype.dll支援的函數
bool isalnum(string)
bool isalpha(string)
bool iscrl(string)
bool isdigit(string)
bool isgraph(string)
bool islower(string)
bool isprint(string)
bool ispunct(string)
>bool isupper(string)
bool isxdigit(string)
【本文版權歸作者凡草0515與奧索網共同擁有,如需轉載,請註明作者及出處】 🎜>
http://www.bkjia.com/PHPjc/316621.html