重複の可能性:
ストリームを開けませんでした: 引数が無効です
// Define the core paths
// Define them as absolute paths to make sure that require_once works as expected
// DIRECTORY_SEPARATOR is a PHP pre-defined constant
// (\ for Windows, / for Unix)
defined('DS') ? null : define('DS', DIRECTORY_SEPARATOR);
defined('SITE_ROOT') ? null :
define('SITE_ROOT', DS.'C:'.DS.'wamp'.DS.'www'.DS.'photo_gallery');
defined('LIB_PATH') ? null : define('LIB_PATH', SITE_ROOT.DS.'includes');
// load config file first
require_once(LIB_PATH.DS.'config.php');
// load basic functions next so that everything after can use them
require_once(LIB_PATH.DS.'functions.php');
// load core objects
require_once(LIB_PATH.DS.'session.php');
require_once(LIB_PATH.DS.'database.php');
// load database-related classes
require_once(LIB_PATH.DS.'user.php');
いつでも、アドレスバーに localhost/photo_gallery/public/admin/index.php と入力して、このコードを実行しようとしました。次のようなエラーが表示されます。
警告: require_once(\C:\wamp\www\photo_gallery\includes\config.php): オープンストリームに失敗しました: C:\wamp\www\photo_gallery\includes の引数が無効で、16 行目に \initialize.php があります。
致命的なエラー:require_once():必要な '\C:\wamp\www\photo_gallery\includes\config.php'(include_path='.;C:\php\pear') を C:\wamp\www\photo_gallery で開くことができませんでした16 行目の \includes\initialize.php
何をすべきか教えてください。初心者のスタートアップ Web デザイナーで、この致命的なエラーに悩まされています。