主页
PHP
PHP - 字符串连接
tryphp_string_concatenation3
运行 ❯
×
更改方向
保存代码
更改主题
<?php $x = "Hello"; $y = "World"; $z = "$x $y"; echo $z; ?>
Hello World