mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +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'); |