PHP用、外部接続にcURLかfsockopenが選べるHTTPクラス
2008年01月22日-
スポンサード リンク
HTTP Class for PHP (supports both cURL and fsockopen) | Md Emran Hasan aka phpfour
This is a wrapper HTTP class that uses either cURL or fsockopen to harvest resources from the web.
PHP用、外部接続にcURLかfsockopenが選べるHTTPクラス。
次のようにPEARレスでシンプルに使えます。
<?php
include_once('class.http.php');
$http = new Http();
$http->useCurl(false);
$http->setMethod('POST');
$http->addParam('user_name', 'emran');
$http->addParam('password', 'hasan');
$http->setReferrer('https://someproject.projectpath.com/login');
$http->execute('https://someproject.projectpath.com/login/authenticate');
echo ($http->error) ? $http->error : $http->result;
?>
リファラ送りやBasic認証、リダイレクト回数設定、クッキー制御などの基本的な機能にも対応しています。
ドキュメントはこちら
関連エントリ
関連の記事検索:PHP, JavaScript
スポンサード リンク
Advertisements
SITE PROFILE
最新のブログ記事(新着順)
- 2012年2月10日 管理人のブックマーク
- ブラウザ上でPDFを表示するJSライブラリ「PDF.js」
- 次世代の検索フォームを作成するjQuery&CSS3サンプル
- 2012年2月9日 管理人のブックマーク
- faviconを書き換えてfacebookの通知っぽくしてくれるfaviconアラート実装ライブラリ「Tinycon」
- ページめくりを実現するためのjQueryプラグイン集
- 2012年2月8日 管理人のブックマーク
- HTMLをアップするとCSSのスケルトンを自動生成してくれる「bearcss」
- HTML5で綺麗でインタラクティブなグラフが描けるライブラリ「Flotr2」
- 2012年2月7日 管理人のブックマーク
- 過去のエントリ



















間違いの指摘をしていただける方はメール、あるいはTwitterでお願いします(クリック)




