私のphpコードの先頭にあるオートローダー
function __autoload($class_name) {
include_once $class_name . '.class.php';
}
呼び出しがnew MongoClient();
エラーで失敗する原因となっていますWarning: include_once(MongoClient.class.php): failed to open stream
クラスにオートローダを使用し、標準クラスを使用するにはどうすればよいですか?
注: MongoDb は PECL と共にインストールされており、オートローディング機能を削除しても問題なく動作します。PHP 5.4.9のmongo-1.3.0beta2