且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

php中单引号和双引号的区别

更新时间:2022-08-14 19:03:12

单引号内部的变量不会执行

  双引号会执行

  如

  $name = 'hello';

  echo "the $name";

  会输出 the hello

  而如果是单引号

  $name = 'hello';

  echo 'the $name';

  会输出 the $name

  主要区别就是这个。