mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
15 lines
224 B
Markdown
15 lines
224 B
Markdown
<?php
|
|
|
|
use Appwrite\Client;
|
|
use Appwrite\Services\Users;
|
|
|
|
$client = new Client();
|
|
|
|
$client
|
|
->setProject('')
|
|
->setKey('')
|
|
;
|
|
|
|
$users = new Users($client);
|
|
|
|
$result = $users->createUser('email@example.com', 'password'); |