开发学院WEB开发PHP php中单引号和双引号的区别 阅读

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

 2010-10-16 08:08:26 来源:WEB开发网   
核心提示:单引号内部的变量不会执行双引号会执行如$name = 'hello';echo "the $name";会输出 the hello而如果是单引号$name = 'hello';echo 'the $name';会输出 the $name主要区别就是这个

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

双引号会执行

$name = 'hello';

echo "the $name";

会输出 the hello

而如果是单引号

$name = 'hello';

echo 'the $name';

会输出 the $name

主要区别就是这个。

Tags:php 引号 引号

编辑录入:爽爽 [复制链接] [打 印]
[]
  • 好
  • 好的评价 如果觉得好,就请您
      0%(0)
  • 差
  • 差的评价 如果觉得差,就请您
      0%(0)
赞助商链接