问答详情
源自:1-3 PHP-Echo语句

PHP区分单引号和双引号吗?

PHP区分单引号和双引号吗?

提问者:竹墨残香烟花冷 2016-04-06 10:33

个回答

  • 风水羽
    2016-04-06 10:45:15
    已采纳

    分的

    单引号里是普通字符是啥就是啥,双引号里内容可以被解释替换。

    $name = 'hello';
    echo "the $name";

    会输出 the hello

    而如果是单引号

    $name = 'hello';
    echo 'the $name';

    会输出 the $name