appwrite/app/sdks/php/docs/examples/database/get-document.md

15 lines
286 B
Markdown
Raw Normal View History

2019-05-09 06:54:39 +00:00
<?php
use Appwrite\Client;
use Appwrite\Services\Database;
$client = new Client();
$client
2020-02-15 17:53:12 +00:00
->setProject('5df5acd0d48c2')
->setKey('919c2d18fb5d4...a2ae413da83346ad2')
2019-05-09 06:54:39 +00:00
;
$database = new Database($client);
$result = $database->getDocument('[COLLECTION_ID]', '[DOCUMENT_ID]');