我目前有一个php文件,我正在使用它作为模板,但我需要它来读取我用于页面内容的另一个php文件的数据。我这样做是为了节省代码和时间,但它似乎没有工作。我用较少量的代码进行了测试,但仍然无效。它们都是.php文件。
代码 -
<html>
<head>
<title></title>
</head>
<body>
<?php
$temp = 'test-2.php';
$file = fopen($temp, 'r');
$cont = fread($file, filesize($temp));
print $cont;
fclose($file);
?>
</body>
test-2.php
<?php
echo 'hello world';
?>
答案 0 :(得分:4)
只需使用<?php include('test-2.php'); ?>
肯定会做你想做的事情吗?