Ett alternativ är att använda magiska konstanter t.ex. __DIR__
, se Fördefinierade konstanter
.
.
├── 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';
Obs! Jag rekommenderar att du använder require
istället för include
, se kräv
.