ホームページ > バックエンド開発 > PHPチュートリアル > PHP_PHPチュートリアルでカプセル化されたHttpClientクラスの使用例

PHP_PHPチュートリアルでカプセル化されたHttpClientクラスの使用例

WBOY
リリース: 2016-07-13 09:50:33
オリジナル
951 人が閲覧しました

PHP でカプセル化された HttpClient クラスの使用例

この記事の例では、PHP でカプセル化された HttpClient クラスについて説明します。皆さんの参考に共有してください。具体的な分析は次のとおりです:

これは、GET POST Cookie セッションなどの単純な関数を実装できる、php でカプセル化された HttpClient クラスです。もともと作っていたのですが、この2日間でまた修正しました。

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

/*

* ファイル名: httpclient.php

*2012-12-21作成

* RobinTang によって作成されました

* この生成されたファイルのテンプレートを変更するには、

にアクセスしてください

* ウィンドウ - 設定 - PHPeclipse - PHP - コード テンプレート

*/

クラス SinCookie {

パブリック $name; // クッキー名

公開 $value; // クッキー值

// 下三个属性现在未实现

パブリック $ の有効期限が切れます。 // 期間中

パブリック $パス; // 路径

パブリック $ドメイン; // ドメイン

// 从Cookie文字符串创建一个Cookie对象

関数 __construct($s = false) {

if ($s) {

$i1 = strpos($s, '=');

$i2 = strpos($s, ';');

$this->name = トリム(substr($s, 0, $i1));

$this->value = trim(substr($s, $i1 +1, $i2 - $i1 -1));

}

}

// 获取Cookie键值对

関数 getKeyValue() {

return "$this->name=$this->value";

}

}

// 会话上下文

クラス SinHttpContext {

パブリック $cookies; // 会话Cookies

パブリック $リファラー; // 前一页面地址

関数 __construct() {

$this->cookies = array ();

$this->参照元 = "";

}

// 設置Cookie

関数 cookie($key, $val) {

$ck = 新しい SinCookie();

$ck->名前 = $key;

$ck->値 = $val;

$this->addCookie($ck);

}

// クッキー追加

関数 addCookie($ck) {

$this->cookies[$ck->name] = $ck;

}

// 获取Cookies字串、请求時用到

関数 cookiesString() {

$res = '';

foreach ($this->Cookies as $ck) {

$res .= $ck->getKeyValue() 。 ';';

}

$res を返す;

}

}

// Http请求对象

クラスSinHttpRequest {

公開 $url; // 请求地址

パブリック $method = 'GET'; // 请求方法

パブリック $host; // 主さん

パブリック $パス; // 路径

パブリック$スキーム; // 协议,http

パブリック $ポート; // 口口

パブリック $ヘッダー; // 请求头

パブリック $body; // 请求正文

// 設置头

関数 setHeader($k, $v) {

if (!isset ($this->header)) {

$this->header = array();

}

$this->header[$k] = $v;

}

// 获取请求字符串

// 包含头和请求正文

//获取之後直接写ソケット就行

関数 reqString() {

$matches = parse_url($this->url);

!isset ($matches['host']) && $matches['host'] = '';

!isset ($matches['path']) && $matches['path'] = '';

!isset ($matches['query']) && $matches['query'] = '';

!isset ($matches['port']) && $matches['port'] = '';

$host = $matches['host'];

$path = $matches['path'] ? $matches['パス'] 。 ($matches['query'] ? '?' . $matches['query'] : '') : '/';

$port = !empty ($matches['port']) ? $matches['ポート'] : 80;

$スキーム = $matches['スキーム'] ? $matches['スキーム'] : 'http';

$this->host = $host;

$this->パス = $パス;

$this->スキーム = $スキーム;

$this->port = $port;

$method = strtoupper($this->method);

$res = "$method $path HTTP/1.1rn";

$res .= "ホスト: $hostrn";

if ($this->ヘッダー) {

reset($this->ヘッダー);

while (list ($k, $v) = each($this->header)) {

if (isset ($v) && strlen($v) > 0)

$res .= "$k: $vrn";

}

}

$res .= "rn";

if ($this->body) {

$res .= $this->body;

$res .= "rnrn";

}

$res を返す;

}

}

// http响应

クラス SinHttpResponse {

パブリック$スキーム; // 协议

パブリック$ステータス; // 状態态,成功したときは大丈夫

公開$コード; // 状態态码,成功したときは 200

パブリック $ヘッダー; // 响应头

パブリック $body; // 响应正文

関数 __construct() {

$this->header = array();

$this->body = null;

}

関数 setHeader($key, $val) {

$this->header[$key] = $val;

}

}

// HTTPクライアント

クラス SinHttpClient {

パブリック $keepcontext = true; // 否か维持会话

パブリック $context; // 上下文

パブリック $リクエスト; // 请求

公開 $response; // 响应

パブリック $debug = false;

// 否かデバッグモード中、

//真の時候会印刷出力要求内容と同じ头部

関数 __construct() {

$this->request = new SinHttpRequest();

$this->response = new SinHttpResponse();

$this->context = new SinHttpContext();

$this->タイムアウト = 15; // 経過時間は 15 秒

}

// 清除上一次的请求内容

関数clearRequest() {

$this->リクエスト->本文 = '';

$this->request->setHeader('Content-Length', false);

$this->request->setHeader('Content-Type', false);

}

//投稿方法

// データは要求されたデータです

// 键值对的時候模拟表单提交

// その他の時間はデータ転送です、転送の形式は xml です

// 如有その他需要,请自行扩展

関数 post($url, $data = false) {

$this->clearRequest();

if ($data) {

if (is_array($data)) {

$con = http_build_query($data);

$this->request->setHeader('Content-Type', 'application/x-www-form-urlencoded');

} 他 {

$con = $data;

$this->request->setHeader('Content-Type', 'text/xml; charset=utf-8');

}

$this->リクエスト->本文 = $con;

$this->リクエスト->メソッド = "POST";

$this->request->setHeader('Content-Length', strlen($con));

}

$this->startRequest($url);

}

// メソッドを取得する

関数get($url) {

$this->clearRequest();

$this->リクエスト->メソッド = "GET";

$this->startRequest($url);

}

// この方法は内部调用の方法であり、直接调用ではありません

関数 startRequest($url) {

$this->リクエスト->url = $url;

if ($this->keepcontext) {

// 如果保存上下文の话設置相关情報

$this->request->setHeader('Referer', $this->context->referer);

$cks = $this->context->cookiesString();

if (strlen($cks) > 0)

$this->request->setHeader('Cookie', $cks);

}

// 获取请要求内容

$reqstring = $this->request->reqString();

if ($this->デバッグ)

エコー "リクエスト:n$reqstringn";

試してください{

$fp = fsockopen($this->リクエスト->ホスト, $this->リクエスト->ポート, $errno, $errstr, $this->タイムアウト);

} catch (例外 $ex) {

echo $ex->getMessage();

出口(0);

}

if ($fp) {

stream_set_blocking($fp, true);

stream_set_timeout($fp, $this->タイムアウト);

// 写データ

fwrite($fp, $reqstring);

$status = stream_get_meta_data($fp);

if (!$status['timed_out']) { //未超時間

// 以下の循環用来读取响应头部

ながら (!feof($fp)) {

$h = fgets($fp);

if ($this->デバッグ)

エコー$h;

if ($h && ($h == "rn" || $h == "n"))

休憩;

$pos = strpos($h, ':');

if ($pos) {

$k = strto lower(trim(substr($h, 0, $pos)));

$v = トリム(substr($h, $pos +1));

if ($k == 'set-cookie') {

//Cookieを更新します

if ($this->keepcontext) {

$this->context->addCookie(new SinCookie($v));

}

} 他 {

//头里面去に追加

$this->response->setHeader($k, $v);

}

} 他 {

// 最初の行データ

// 解析响应状態态

$preg = '/^(S*) (S*) (.*)$/';

preg_match_all($preg, $h, $arr);

isset ($arr[1][0]) & $this->response->scheme = trim($arr[1][0]);

isset ($arr[2][0]) & $this->response->stasus = トリム($arr[2][0]);

isset ($arr[3][0]) & $this->response->code = trim($arr[3][0]);

}

}

// 获取响应正文长度

$len = (int) $this->response->header['content-length'];

$res = '';

// 以下の循環读取正文

while (!feof($fp) && $len > 0) {

$c = fread($fp, $len);

$res .= $c;

$len -= strlen($c);

}

$this->response->body = $res;

}

// 关闭ソケット

fclose($fp);

// 上下文维持中へ回帰保存

$this->context->referer = $url;

}

}

}

// デモ

// さあ、テストを始めましょう

$client = 新しい SinHttpClient(); // クライアントを作成します

$client->get('http://www.baidu.com/'); //

を取得します

echo $client->response->body; // エコー

?>

ここで説明されている大家向けの php プログラムの設計が役立つことを希望します。

http://www.bkjia.com/PHPjc/1017843.html

tru​​ehttp://www.bkjia.com/PHPjc/1017843.html技術記事 PHP パッケージ化された HttpClient クラスの使用例 ここでは、PHP パッケージ化された HttpClient クラスについて説明します。具体的には次のように分析されます。
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート