-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Как вывести на экран последнии 10 мачтей игрока #122
Comments
не пойму в каком виде пишется ид например 76482434 - адмирал бульдог, но это не стим ид... |
Здравствуй, @Riconda. Такой код должен работать: <?php
require_once 'vendor/autoload.php';
use Dota2Api\Api;
Api::init('YOUR_API_KEY', array('localhost', 'root', 'password', 'db_name', 'table_prefix_')); // тут свои данные
$matchesMapperDb = new Dota2Api\Mappers\MatchesMapperDb();
$matchesMapperDb->setAccountId(76482434)->setMatchesRequested(10);
$matchesInfo = $matchesMapperDb->load();
print_r($matchesInfo); |
Спасибо за ответ, получил такую ошибку Fatal error: Call to a member function prepare() on a non-object in \public_html\vendor\kronusme\dota2-api\includes\Utils\Db.php on line 174 |
Получилось сделать вот так )
|
теперь хочу сделать чтобы из всех матчей показывал только последних 10 рейтинговых игр, буду думать... если можно, то подскажите ;) |
https://pp.vk.me/c638916/v638916858/11102/X2NKNlMt1aI.jpg |
Hey @kronusme can we stop allowing issues to be made for simple how-to things? A lot of us have this repo started/watched and keep getting notified for people asking for help. Issues aren't meant for that at all. |
Я нуб в этих делах, но потихоньку разбираюсь... так вот такой вопрос, как без записи в бд, просто вывести на странице в php, последнии 10 матчей определенного пользователя?
The text was updated successfully, but these errors were encountered: