別の方法は、マジック定数を使用することです。 __DIR__
、事前定義された定数
を参照してください。 。
.
├── config.ini
└── public_html
├── elements
│ └── includes
│ └── db.php
├── index.php
└── secure
└── index.php
public_html / elements / contains / 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
の代わりに 、必須
を参照してください。 。