mirror of
https://github.com/appwrite/appwrite
synced 2026-05-03 03:17:20 +00:00
15 lines
209 B
Markdown
15 lines
209 B
Markdown
|
|
<?php
|
||
|
|
|
||
|
|
use Appwrite\Client;
|
||
|
|
use Appwrite\Services\Storage;
|
||
|
|
|
||
|
|
$client = new Client();
|
||
|
|
|
||
|
|
$client
|
||
|
|
->setProject('')
|
||
|
|
->setKey('')
|
||
|
|
;
|
||
|
|
|
||
|
|
$storage = new Storage($client);
|
||
|
|
|
||
|
|
$result = $storage->getFile('[FILE_ID]');
|