(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
ctype_punct — 检查是否所有字符都是可打印的,但不是空白字符或字母数字字符
text
要测试的字符串。
注意:
如果提供了一个介于 -128 和 255(含)之间的 整数,则将其解释为单个字符的 ASCII 值(负值会加上 256 以允许扩展 ASCII 范围内的字符)。任何其他整数都将被解释为包含该整数十进制数字的字符串。
示例 #1 ctype_punct() 示例
<?php
$strings = array('ABasdk!@!$#', '!@ # $', '*&$()');
foreach ($strings as $testcase) {
if (ctype_punct($testcase)) {
echo "字符串 $testcase 全部由标点符号组成。\n";
} else {
echo "字符串 $testcase 不全部由标点符号组成。\n";
}
}
?>
以上示例将输出
The string ABasdk!@!$# does not consist of all punctuation. The string !@ # $ does not consist of all punctuation. The string *&$() consists of all punctuation.