Files
appwrite/app/sdks/php/docs/examples/storage/get-file.md
T
2019-05-09 09:54:42 +03:00

205 B

<?php use Appwrite\Client; use Appwrite\Services\Storage; $client = new Client(); $client setProject('') setKey('') ; $storage = new Storage($client); $result = $storage->getFile('[FILE_ID]');