1

我想将 include 添加到带有变量、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>';
    }
    ?>
4

1 回答 1

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>';
于 2013-06-11T18:06:52.710 回答