0

アプリを開発していて、サブ フォルダーをテスト ドメインとして使用しています。

http://mywebsite/testing-folder

私のdbconfigは次の場所にあります:

http://mywebsite/testing-folder/lib/dbconfig.php

次のファイルを含める場合: http://mywebsite/testing-folder/userarea/profile

相対パスで問題ありません。直接パスで含めると、エラーがスローされます。

FATAL ERROR: Call to a member function prepare() on a non-object in...

$root = 'http://mywebsite/testing-folder/';
include '../../lib/dbconfig.php'; // This works
include $root.'lib/dbconfig.php'; // This does not

理由の手がかりはありますか?

4

2 に答える 2