appwrite/app/sdks/php/docs/examples/account/delete.md

15 lines
193 B
Markdown
Raw Normal View History

2019-05-09 06:54:39 +00:00
<?php
use Appwrite\Client;
use Appwrite\Services\Account;
$client = new Client();
$client
setProject('')
setKey('')
;
$account = new Account($client);
$result = $account->delete();