我有几个php文件我需要包含在index.php文件中,但是当我使用require_once或include时,页面无法加载。我知道这是因为服务器不允许这样做。我如何以不同的方式包含或require_once文件?代码是这个
require_once'php/lib/session.php';
sec_session();
答案 0 :(得分:0)
还有另一种方式。但是一个肮脏的人:
//read the file
$phpCode = file_get_contents('/path/to/file/to/include.php');
//eval the code
eval('?>'.$phpCode.'<?php;');
但是如果您的主机阻止基本的“包含”功能,那么eval被阻止的几率也很大......