Files
appwrite/app/sdks/php/docs/examples/storage/update-file.md
T
2019-08-28 15:37:13 +03:00

208 B

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