如何连接PHP变量和字符串

时间:2016-02-26 04:54:42

标签: php wordpress

可能是一个非常愚蠢的问题,但我正在尝试使用php var和html创建一个html字符串..我到底做错了什么?!? :(

$author_name = get_the_author(); ?>
<h4><?php $author_name;?> On-Demand Webinars</h4>

谢谢!

2 个答案:

答案 0 :(得分:1)

错过了echo

<h4><?php echo $author_name;?> On-Demand Webinars</h4>

答案 1 :(得分:1)

你错过了“回声”声明 例如

 <?php echo $author_name;?> On-Demand Webinars

 OR

 <?=$author_name;?>