84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
<?php
$apple = true;
teue=empty($apple);
if(empty(true)){
# echo '執行了真區間,鳳姐,我愛你';
}else{
echo'行了假區間,你想鳳姐了';
# }
?>
答案顯示的是else 不是您說的 if 希望老師能修正自己的錯誤。 我擔心很多人看了影片會誤以為您的口誤才是正確的
teue=empty($apple); //這行必須報錯 因為teue是什麼東西?是變數麼?如果是變數 請加上$符號,
//empty(true)老師真這麼寫的麼? ? ?
echo '執行了真區間,鳳姐,我愛你';
# echo '行了假區間,你想鳳姐了';
}
<?php
$apple = true;
teue=empty($apple); //這行必須報錯 因為teue是什麼東西?是變數麼?如果是變數 請加上$符號,
//empty(true)老師真這麼寫的麼? ? ?
if(empty(true)){
echo '執行了真區間,鳳姐,我愛你';
}else{
# echo '行了假區間,你想鳳姐了';
}
?>