Files
appwrite/app/sdks/php/docs/examples/database/delete-collection.md
T
2019-05-09 09:54:42 +03:00

224 B

<?php use Appwrite\Client; use Appwrite\Services\Database; $client = new Client(); $client setProject('') setKey('') ; $database = new Database($client); $result = $database->deleteCollection('[COLLECTION_ID]');