ctype_alnum() 函數(shù)檢測字符串是否全部為字母和(或)數(shù)字字符。
ctype_alnum ( $text );
它檢查提供的字符串,文本中的所有字符是否都是字母和(或)數(shù)字。
在標(biāo)準(zhǔn)C語言環(huán)境中,字母僅為[A-Za-z],該函數(shù)等效于preg_match('/^[a-z0-9]+$/iD',$ text)。
序號 | 參數(shù)和說明 |
---|---|
1 | text(必需) 要檢測的字符串。 |
如果文本中的每個(gè)字符都是字母或數(shù)字,則返回TRUE,否則返回FALSE。
遍歷檢測數(shù)組元素,是否全為字母數(shù)字
<?php $strings = array('hello', 'foo!#$bar'); foreach ($strings as $example) { if (ctype_alnum($example)) { echo "$example 由字母或數(shù)字組成。\n"; }else { echo "$example 不全是字母或數(shù)字。\n"; } } ?>測試看看?/?
輸出結(jié)果:
hello 由字母或數(shù)字組成。 foo!#$bar 不全是字母或數(shù)字。