1
0
Fork 0
mirror of synced 2024-09-12 15:47:12 +12:00
appwrite/app/sdks/php/docs/examples/storage/create-file.md
2019-05-09 09:54:42 +03:00

15 lines
No EOL
256 B
Markdown

<?php
use Appwrite\Client;
use Appwrite\Services\Storage;
$client = new Client();
$client
setProject('')
setKey('')
;
$storage = new Storage($client);
$result = $storage->createFile(new \CURLFile('/path/to/file.png', 'image/png', 'file.png'));