<?php
function getUserMotto(string $username): ?string {
$res = file_get_contents("https://www.habbo.com/api/public/users?name={$username}", false, stream_context_create([
'http' => [
'user_agent' => 'habbo-sucks',
],
]));
$data = json_decode($res, true);
return $data['motto'];
}
$motto = getUserMotto('higoka');
Hata inceledim ancak bulamadım yardımlarınız için şimdiden teşekkür ederim, İyi çalışmalar.