Một giải pháp thay thế là sử dụng các hằng số ma thuật, ví dụ:__DIR__
, xem Hằng số định nghĩa trước
.
.
├── config.ini
└── public_html
├── elements
│ └── includes
│ └── db.php
├── index.php
└── secure
└── index.php
public_html / Elements / include / db.php
<?php
$config = parse_ini_file(
__DIR__ . '/../../../config.ini'
);
public_html / index.php
<?php
include __DIR__ . '/elements/includes/db.php';
public_html / secure / index.php
<?php
include __DIR__ . '/../elements/includes/db.php';
Lưu ý:Tôi khuyên bạn nên sử dụng require
thay vì include
, xem yêu cầu
.