如何从另一个目录访问php文件

时间:2019-07-10 23:38:58

标签: php

所以我试图访问另一个目录中的php文件,但是它不起作用,我想我知道原因,所以我当前正在编码的php文件位于文件夹/var/www/html/faq/中,并且该文件夹包含我要访问的文件位于目录/var/www/html/engine/中。

我还没有尝试过任何东西。

<?php
ob_start();
require_once './engine/config.php';
require_once './engine/init.php';
require_once './engine/functions.php';
if (!$user -> LoggedIn())
{
    header('Location: login.php');
    die();
}
if ($user -> IsBanned($odb))
{
    header('Location: logout.php');
    die();
}
?>

1 个答案:

答案 0 :(得分:1)

您只需要在目录上再加上一个点即可。

require_once'../ engine / config.php';

require_once'../ engine / init.php';

require_once'../ engine / functions.php';