php include不支持echo

时间:2013-06-11 18:02:53

标签: php html5 image css3

我想将变量和css和图像添加到echo中,但它不起作用。请帮忙。

<?php
    if (isset($_POST['sharebutton'])) {
    $share=$_POST['sharetext'];
        $share=$share;
        echo '<div id="content">'.'<img src="img/sharepropic.png"/>'.$share.include('likecomment.php').'</div>';
    }
    ?>

1 个答案:

答案 0 :(得分:3)

如果要将包含的输出分配给变量,可以执行以下操作:

ob_start();
include('likecomment.php');
$out = ob_get_contents();
ob_end_clean();

echo '<div id="content">'.'<img src="img/sharepropic.png"/>'.$share.$out.'</div>';