(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.