在 echo html 代码中包含 php 文件

include php file in echo html code

我无法让这个语法起作用,已经尝试修改它很多次了。

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

为此,您的其他 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>";

希望对您有所帮助。