我有一个php noob时刻,我正在寻找一个更小的更紧凑的解决方案来连接“$ content”变量,该变量被作为外部“layout.php”文件中的主要内容回显。
<?php
require_once("Controller/comment_control.php");
$comment = new COMMENT();
$title = "Customer Reviews";
$content = '<div class="comment_box">' ;
$content .= $comment->getComments();
$content .= '</div>';
任何帮助凝聚这种丑陋混乱的人都会受到赞赏。
答案 0 :(得分:0)
想通了,括号中的php调用得到了我想要的最终结果
$content = '<div class="comment_box">' . ($comment->getComments() ) . '</div>';
答案 1 :(得分:0)
使用sprintf()
示例:
$content = sprintf('<div class="comment_box">%s</div>', $comment->getComments());