mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 16:38:32 +00:00
15 lines
270 B
Markdown
15 lines
270 B
Markdown
|
|
<?php
|
||
|
|
|
||
|
|
use Appwrite\Client;
|
||
|
|
use Appwrite\Services\Projects;
|
||
|
|
|
||
|
|
$client = new Client();
|
||
|
|
|
||
|
|
$client
|
||
|
|
setProject('')
|
||
|
|
setKey('')
|
||
|
|
;
|
||
|
|
|
||
|
|
$projects = new Projects($client);
|
||
|
|
|
||
|
|
$result = $projects->createTask('[PROJECT_ID]', '[NAME]', 'play', '', 1, 'GET', 'https://example.com');
|