Files
appwrite/app/sdks/php/docs/examples/auth/logout-by-session.md
T
2019-07-21 14:54:45 +03:00

196 B

<?php use Appwrite\Client; use Appwrite\Services\Auth; $client = new Client(); $client setProject('') setKey('') ; $auth = new Auth($client); $result = $auth->logoutBySession('[ID]');