如果大括号内是标量变量的话,那这里的作用就是限定变量界限的。在[$a = "--${Str}\r\n"和$a = "--$Str\r\n"有什么区别]里是没有什么区别的。
如果大括号内是标量变量的话,那这里的作用就是限定变量界限的。在[$a = "--${Str}\r\n"和$a = "--$Str\r\n"有什么区别]里是没有什么区别的。
$str = 'my name';$strstr='your name';echo "${str}str is hello"; //my namestr is helloecho "$strstr is hello"; //your name is helloecho "$strabc is hello"; // Undefined variable: strabc in {}的作用是限制变量名。
$str = 'my name';
$strstr='your name';
echo "${str}str is hello"; //my namestr is hello
echo "$strstr is hello"; //your name is hello
echo "$strabc is hello"; // Undefined variable: strabc in
{}的作用是限制变量名