php 请求github api 客户端的解决办法
内容摘要
这篇文章主要为大家详细介绍了php 请求github api 客户端的简单示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
<?
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
<?
文章正文
这篇文章主要为大家详细介绍了php 请求github api 客户端的简单示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
<?php
/**
* 请求github api 客户端
*
* @param
* @arrange (www.idcnote.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();
/*** 来自:php教程(www.idcnote.com) ***/
?>
注:关于php 请求github api 客户端的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释