file_get_contents( ) 函数,读取”.php”结尾文件

file_get_contents( ) 函数,读取”.php”结尾文件,会注释部分代码 解决方法
事情是这样的,回顾:

/test.php

$file_path =  ‘./test.php’;
        $site_conf =file_get_contents($dbconfig_path);
        echo ‘<pre>’;
        print_r($site_conf);exit;
               
解决办法
需要htmlentities( )将其作为实体输出;

$file_path =  ‘./test.php’;
        $site_conf = htmlentities( file_get_contents($dbconfig_path) );
        echo ‘<pre>’;
        print_r($site_conf);exit;

发表回复