HTTPでGET その2
Posted feedbacks - PHP
Zend Frameworkで
1 2 3 4 5 6 7 8 9 10 11 | <?php
require_once 'Zend/Http/Client.php';
$config = array(
'adapter' => 'Zend_Http_Client_Adapter_Proxy',
'proxy_host' => 'ugnews.net',
'timeout'=> 1
);
$client = new Zend_Http_Client('http://ja.doukaku.org/feeds/comments/', $config);
print_r($client->request('GET'));
|


ところてん
#4798()
Rating2/2=1.00
see: HTTPでGET
[ reply ]