在echo html代码中包含php文件

时间:2016-03-05 08:23:51

标签: php php-include

我无法使用此语法,已尝试多次修改它。

    <?php
echo 
"<a href='".include 'go/randomlink.php'."'>".$item['stockid']."</a>";
?>

1 个答案:

答案 0 :(得分:1)

为此,你的其他php文件必须简单地回显一些字符串。

randomlink.php:

<?php
echo "What came first the chicken or the egg?";
?>

的index.php:

echo "<a href='";
include('go/randomlink.php');
echo "'>" . $item['stockid'] . "</a>";

希望这会对你有所帮助。