我无法使用此语法,已尝试多次修改它。
<?php
echo
"<a href='".include 'go/randomlink.php'."'>".$item['stockid']."</a>";
?>
答案 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>";
希望这会对你有所帮助。