Алтернатива е да използвате магически константи, напр. __DIR__
, вижте Предварително дефинирани константи
.
.
├── config.ini
└── public_html
├── elements
│ └── includes
│ └── db.php
├── index.php
└── secure
└── index.php
public_html/elements/includes/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';
Забележка:Препоръчвам да използвате require
вместо include
, вижте изискване
.