- 授权协议: MIT
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: https://github.com/kriswallsmith/Buzz
软件介绍
Buzz 是一个轻量级 PHP 的 HTTP 客户端库。
示例代码:
<?php
$browser = new Buzz\Browser();
$response = $browser->get('http://www.google.com');
echo $browser->getLastRequest()."\n";
echo $response;
底层处理:
<?php
$request = new Buzz\Message\Request('HEAD', '/', 'http://google.com');
$response = new Buzz\Message\Response();
$client = new Buzz\Client\FileGetContents();
$client->send($request, $response);
echo $request;
echo $response;
Machine Learning
Kevin Murphy / The MIT Press / 2012-9-18 / USD 90.00
Today's Web-enabled deluge of electronic data calls for automated methods of data analysis. Machine learning provides these, developing methods that can automatically detect patterns in data and then ......一起来看看 《Machine Learning》 这本书的介绍吧!
