1
0
Fork 0
mirror of synced 2024-09-18 02:18:19 +12:00
appwrite/app/sdks/php/docs/examples/locale/get-countries-e-u.md

15 lines
247 B
Markdown
Raw Normal View History

2019-05-09 18:54:39 +12:00
<?php
use Appwrite\Client;
use Appwrite\Services\Locale;
$client = new Client();
$client
2020-02-16 06:53:12 +13:00
->setProject('5df5acd0d48c2')
->setKey('919c2d18fb5d4...a2ae413da83346ad2')
2019-05-09 18:54:39 +12:00
;
$locale = new Locale($client);
$result = $locale->getCountriesEU();