📅  最后修改于: 2023-12-03 15:33:32.006000             🧑  作者: Mango
ctype_punct()函数用于检查一个字符串是否只包含标点符号。该函数返回TRUE,如果字符串只包含标点符号,否则返回FALSE。
bool ctype_punct ( string $text )
$text
:要检查的字符串。$string1 = "Hello, World!"; // 包含其他字符
$string2 = "!@#$%^&*()_+=-`"; // 只包含标点符号
if (ctype_punct($string1)) {
echo "字符串 $string1 只包含标点符号.";
} else {
echo "字符串 $string1 包含其他字符.";
}
if (ctype_punct($string2)) {
echo "字符串 $string2 只包含标点符号.";
} else {
echo "字符串 $string2 包含其他字符.";
}
输出:
字符串 Hello, World! 包含其他字符.
字符串 !@#$%^&*()_+=-` 只包含标点符号.