如果包含在php.ini中禁用,如何包含文件

时间:2015-11-17 13:54:01

标签: php

我有几个php文件我需要包含在index.php文件中,但是当我使用require_once或include时,页面无法加载。我知道这是因为服务器不允许这样做。我如何以不同的方式包含或require_once文件?代码是这个

require_once'php/lib/session.php';
sec_session();

我在chrome中遇到此错误 enter image description here

1 个答案:

答案 0 :(得分:0)

还有另一种方式。但是一个肮脏的人:

//read the file
$phpCode = file_get_contents('/path/to/file/to/include.php');
//eval the code 
eval('?>'.$phpCode.'<?php;');

但是如果您的主机阻止基本的“包含”功能,那么eval被阻止的几率也很大......