1
0
Fork 0
mirror of synced 2024-09-18 02:18:19 +12:00
appwrite/app/sdks/php/docs/examples/database/get-document.md

15 lines
286 B
Markdown
Raw Normal View History

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