PHP プロジェクトに取り組んでいますが、require_once (または require) でエラーが発生します。
Warning: require_once(C:/wamp/www/MyFiles/MyProject/includes/db_config.php) [function.require-once]: failed to open stream: No such file or directory in C:\wamp\www\MyFiles\MyProject\includes\autoloads.php on line 9
Fatal error: require_once() [function.require]: Failed opening required 'C:/wamp/www/MyFiles/MyProject/includes/db_config.php' (include_path='.;C:\php5\pear') in C:\wamp\www\MyFiles\MyProject\includes\autoloads.php on line 9
これは私がファイルを含める方法です
$root = $_SERVER['DOCUMENT_ROOT'];
//config..
require_once($root . '/MyFiles/MyProject/includes/db_config.php');
私は使ってみました
echo $root . '/MyFiles/MyProject/includes/db_config.php';
URLをちゃんと印刷しています
すなわち C:\wamp\www\MyFiles\MyProject\includes\db_config.php
私はWAMPサーバー5を使用しています autload.php と db_config.php は同じフォルダーにあります