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.

9 lines
272 B

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