You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
272 B

<?php
//如果变量后边还有字符串的话,就需要将变量与后面的字符串使用空格分开,或者使用大括号{ }将变量包裹起来
$a='hello';
$str1="$a是你好<br>";
$str2="{$a}是你好<br>";
echo $str1;
echo $str2;
?>