Add comma between variables

时间:2016-11-24 作者:JoaMika

我试图使用此代码在两个变量之间添加逗号,但出现600错误:

<?php the_field(\'fl_venue\');. \', \' .the_field(\'fl_address\'); ?>
怎么了?

1 个回复
最合适的回答,由SO网友:jgraup 整理而成

您不能串联这些输出。\\u字段将打印,而get\\u字段可用于concat。

<?php the_field(\'fl_venue\');
echo \', \';
the_field(\'fl_address\'); ?>