एक विकल्प जादू स्थिरांक का उपयोग करना है उदा। __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
, देखें require
।