在PHP中,可以使用empty()
函數和strlen()
函數來判斷字符串是否為空。
empty()
函數:$str = "hello";
if (empty($str)) {
echo "String is empty";
} else {
echo "String is not empty";
}
如果字符串為空,empty()
函數會返回true
,否則返回false
。
strlen()
函數:$str = "hello";
if (strlen($str) == 0) {
echo "String is empty";
} else {
echo "String is not empty";
}
strlen()
函數會返回字符串的長度,如果長度為0,則字符串為空。