Files
appwrite/app/sdks/php/docs/examples/storage/update-file.md
T
2019-10-21 20:15:27 +03:00

220 B

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