为什么没有处理PHP代码?

时间:2011-10-08 06:27:33

标签: php

我有一个PHP页面Read.php,它回应了另一个php文件的内容,test.php.test.php包含一些php代码,但这些代码不在Read.php中处理。它们按原样复制。

Read.php

<?php

    $text = 1;
    if ($text == 1){
        $file = file_get_Contents("test.php");
        echo $file;
    }
?>

test.php的

<html>
    <body>
        <p>Text
            <?php echo "Manish";  echo $text;>
        </p>
    </body>
</html>

Read.php的源代码

<html>
    <body>
        <p>Text
            <?php echo "Manish";  echo $text;>
        </p>
    </body>
</html>

如何制作这个PHP代码流程?

3 个答案:

答案 0 :(得分:2)

Read.php

<?php

$text = 1;
if($text == 1){
  include 'test.php';
}

?>

答案 1 :(得分:2)

<?php

    $text = 1;
    if ($text == 1){
        include('test.php');
    }
?>

答案 2 :(得分:1)

从Web服务器(http://...)而不是从文件系统中检索它。只有在Web服务器处理PHP时才会处理PHP。