perl里用大括号括起来的变量有什么意思${变量名}
3个回答
展开全部
如果大括号内是标量变量的话,那这里的作用就是限定变量界限的。在[$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
{}的作用是限制变量名
$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
{}的作用是限制变量名
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询