PHP:file_get_contents显示PHP代码

时间:2013-11-26 13:48:08

标签: php

我有这段代码:

<?php
echo file_get_contents("file.php");
?>

在我的file.php文件中,我有以下代码:

<?php
include_once("../includes/connect.php");
$query = $db->prepare("select * from messages");
$query -> execute();
?>

当我运行代码时..我得到以下输出:

prepare("select * from messages"); $query -> execute(); ?>

我也在其他文件上测试了这个。页面中的mysqli查询显示未执行。我希望它做相反的事情。我做错了什么?

2 个答案:

答案 0 :(得分:0)

显然,echo file_get_contents("file.php");是你做错了什么。

您是否使用了已在其他文件中使用的include的任何原因?

答案 1 :(得分:0)

这是php中的一个基本概念。您要找的是include()require()