为什么php中两条语句输出不一样?
$x=20;
$y=10;
echo "$x-$y=".$x-$y;
echo "$x-$y=".($x-$y);
第一条的输出结果是10,第二条的输出结果是20-10=10;
第一条的:”20-10=“为什么没有了啊?
数据分析师2017-10-01 00:56:08
About the output in echo - PHP Chinese website Q&A - About the output in echo - PHP Chinese website Q&A
Take a look around and learn.