/* 檢查是否是數(shù)字和字母
* php內(nèi)置函數(shù)ctype_alnum檢查字符串是否是數(shù)字和字母,或者兩者混合
* $string
*/
public function is_numandlitter($string) {
? ? ?if (ctype_alnum($string)) {
? ? ? ? return true;
? ? ?} else {
? ? ? ? ?return false;
? ? ?}
}
/* 檢查是否是數(shù)字和字母
* php內(nèi)置函數(shù)ctype_alnum檢查字符串是否是數(shù)字和字母,或者兩者混合
* $string
*/
public function is_numandlitter($string) {
? ? ?if (ctype_alnum($string)) {
? ? ? ? return true;
? ? ?} else {
? ? ? ? ?return false;
? ? ?}
}