主页
PHP
PHP 变量
tryphp_variable_types
运行 ❯
×
更改方向
保存代码
更改主题
<?php $x = 5; // $x is an integer $y = "John"; // $y is a string echo $x; echo $y; ?>
5John