php中的字符串连接

// 定义一个新变量

$test = "hello";

//  .  字符串连接符

echo $test.".world"     // hello.world


 echo "$test.world"     // "" 中的变量将被解析成相应的值

                                // hello.world
 echo '$test.world'       // 单引号' ' 原样输出 $test.world

 

 

你可能感兴趣的:(PHP)