mirror of
https://github.com/appwrite/appwrite
synced 2026-05-19 15:08:43 +00:00
15 lines
256 B
Markdown
15 lines
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'));
|