这篇文章主要为大家详细介绍了php 请求github api 客户端的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
<?php
/**
* 请求github api 客户端
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
// http client making a request to github api
require __DIR__.'/../vendor/autoload.php';
$loop = React\EventLoop\Factory::create();
$client = new React\Http\Client($loop);
$request = $client->request('GET', 'https://api.github.com/repos/react-php/react/commits');
$request->on('response', function ($response) {
$buffer = '';
$response->on('data', function ($data) use (&$buffer) {
$buffer .= $data;
echo ".";
});
$response->on('end', function () use (&$buffer) {
$decoded = json_decode($buffer, true);
$latest = $decoded[0]['commit'];
$author = $latest['author']['name'];
$date = date('F j, Y', strtotime($latest['author']['date']));
echo "\n";
echo "Latest commit on react was done by {$author} on {$date}\n";
echo "{$latest['message']}\n";
});
});
$request->end();
$loop->run();
/*** 来自:四海网(www.q1010.com) ***/
?>
本文来自:http://www.q1010.com/173/563-0.html
注:关于php 请求github api 客户端的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:github
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。