前提・実現したいこと
MongoDBでDocumentをまとめ上げるコレクションの削除の仕方を探しています。
APACHEがCollection名、CollectionがDocumets名にしてコレクションの削除をするソースを書きましたが、今の状態でもエラーが出ており。困っています。
該当のソースコード
PHP
1<?php 2$mongo = new MongoDB\Driver\Manager('mongodb://localhost:27017'); 3$collection = $mongo->APACHE->Collection; 4$response = $collection->drop(); 5?> 6 7
発生している問題・エラーメッセージ
PHP Warning: Undefined property: MongoDB\Driver\Manager::$APACHE PHP Warning: Attempt to read property "Collection" on null Fatal error: Uncaught Error: Call to a member function drop() on null
あなたの回答
tips
プレビュー