php echo中的逗号 发表于 2016-10-12 更新于 2021-09-06 分类于 PHP 才疏学浅,第一次发现echo可以用逗号echo ‘x’ . 1 + 5; //输出 6echo ‘x’ , 1 + 5; //输出 x6 暂时理解为逗号是将 echo 当方法用