运行 ❯
获取您的
自己的 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>
int(5)
float(5.34)
string(2) "25"
添加了换行符以提高可读性。