这是我的代码functions.php
:
<?php
$id = 10;
$html = file_get_contents("inc-star-rating.php?id=$id");
echo $html;
?>
继承人的内容inc-star-rating.php
:
<?php
$id = $_GET['id'];
echo "<div>I have the ID of $id</div>";
?>
它们都在我服务器上的同一目录中,那么为什么会出现以下错误?:
警告:file_get_contents(inc-star-rating.php?id=10) [function.file-get-contents]:打开流失败:没有这样的文件或目录