PHP syntax, Data type, Operators, Condition
題目說明:
(1) 一個為 welcome 的變數儲存【Hello】 ,另一個 world 變數儲存【world】,使用一個為 $msg 的變數來結合成 Hello, world! 並輸出。
(2) 比較 ' ' 與 0 與 null 間的關係。
註:以下預期結果 HTML 有經排版(增加空格以及換行),作答時無須進行排版,但 <br> 換行仍要顯示
Hello, World !
<br>
0 == null => yes
<br>
0 === null => no
<br>
' ' == 0 => yes
<br>
' ' === 0 => no
<br>
' ' == null => no
<br>
' ' === null => no