技术开发 频道

PHP 和 MySQL 开发的八个技巧

    2. 在 PHP 字符串中加入变量

    这个很简单的:

    <?php
    $temp = "hello"
    echo "$temp world";
    ?>

    但是需要说明的是,尽管下面的例子没有错误:
    <?php
    $temp = array("one" => 1, "two" => 2);
    // 输出:: The first element is 1
    echo "The first element is $temp[one].";
    ?>

    但是如果后面那个 echo 语句没有双引号引起来的话,就要报错,因此建议使用花括号:

    <?php
    $temp = array("one" => 1, "two" => 2);
    echo "The first element is {$temp["one"]}.";
    ?>

0
相关文章