PHP连接运算符点或逗号?

这个问题在这里已经有了答案:

  • 与echo和return连接时的句号和逗号之间的区别? 6个答案

  • 是的. 用于连接。

    你的代码应该是,

    $b = "HTML";
    $a = "test" . $b . "printing";
    echo $a;
    

    输出:

    testHTMLprinting
    

    对于空格,你应该使用

    $b = "HTML";
    $a = "test" . " " . $b . " " . "printing";
    echo $a;
    

    输出:

    test HTML printing
    
    链接地址: http://www.djcxy.com/p/59065.html

    上一篇: php concatenation operator dot or comma?

    下一篇: Difference between period and comma when concatenating with echo versus return?