執行 ❯
獲取您
自己的 PHP
伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php $a = 5; $b = 5.34; $c = "25"; var_dump($a); echo "<br>"; var_dump($b); echo "<br>"; var_dump($c); ?> <p>Line breaks were added for better readability.</p> </body> </html>
整數(5)
浮點數(5.34)
字串(2) "25"
為了更好的可讀性,增加了換行。