mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 16:38:32 +00:00
15 lines
197 B
Markdown
15 lines
197 B
Markdown
|
|
<?php
|
||
|
|
|
||
|
|
use Appwrite\Client;
|
||
|
|
use Appwrite\Services\Teams;
|
||
|
|
|
||
|
|
$client = new Client();
|
||
|
|
|
||
|
|
$client
|
||
|
|
setProject('')
|
||
|
|
setKey('')
|
||
|
|
;
|
||
|
|
|
||
|
|
$teams = new Teams($client);
|
||
|
|
|
||
|
|
$result = $teams->createTeam('[NAME]');
|