目录
php远程下载类分享,php远程下载分享
您可能感兴趣的文章:
首页 php教程 php手册 php远程下载类分享,php远程下载分享

php远程下载类分享,php远程下载分享

Jun 13, 2016 am 08:42 AM
php readfile 远程下载

php远程下载类分享,php远程下载分享

本文实例为大家分享了php远程下载类,如下

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

<&#63;php

/**

* 下载远程文件类支持断点续传

*/

class HttpDownload {

private $m_url = "";

private $m_urlpath = "";

private $m_scheme = "http";

private $m_host = "";

private $m_port = "80";

private $m_user = "";

private $m_pass = "";

private $m_path = "/";

private $m_query = "";

private $m_fp = "";

private $m_error = "";

private $m_httphead = "" ;

private $m_html = "";

  

/**

* 初始化

*/

public function PrivateInit($url){

$urls = "";

$urls = @parse_url($url);

$this->m_url = $url;

if(is_array($urls)) {

$this->m_host = $urls["host"];

if(!empty($urls["scheme"])) $this->m_scheme = $urls["scheme"];

if(!empty($urls["user"])) $this->m_user = $urls["user"];

if(!empty($urls["pass"])) $this->m_pass = $urls["pass"];

if(!empty($urls["port"])) $this->m_port = $urls["port"];

if(!empty($urls["path"])) $this->m_path = $urls["path"];

$this->m_urlpath = $this->m_path;

if(!empty($urls["query"])) {

$this->m_query = $urls["query"];

$this->m_urlpath .= "&#63;".$this->m_query;

}

}

}

  

/**

* 打开指定网址

*/

function OpenUrl($url) {

#重设各参数

$this->m_url = "";

$this->m_urlpath = "";

$this->m_scheme = "http";

$this->m_host = "";

$this->m_port = "80";

$this->m_user = "";

$this->m_pass = "";

$this->m_path = "/";

$this->m_query = "";

$this->m_error = "";

$this->m_httphead = "" ;

$this->m_html = "";

$this->Close();

#初始化系统

$this->PrivateInit($url);

$this->PrivateStartSession();

}

  

/**

* 获得某操作错误的原因

*/

public function printError() {

echo "错误信息:".$this->m_error;

echo "具体返回头:<br>";

foreach($this->m_httphead as $k=>$v) {

echo "$k => $v <br>\r\n";

}

}

  

/**

* 判别用Get方法发送的头的应答结果是否正确

*/

public function IsGetOK() {

if( ereg("^2",$this->GetHead("http-state")) ) {

return true;

} else {

$this->m_error .= $this->GetHead("http-state")." - ".$this->GetHead("http-describe")."<br>";

return false;

}

}

  

/**

* 看看返回的网页是否是text类型

*/

public function IsText() {

if (ereg("^2",$this->GetHead("http-state")) && eregi("^text",$this->GetHead("content-type"))) {

return true;

} else {

$this->m_error .= "内容为非文本类型<br>";

return false;

}

}

/**

* 判断返回的网页是否是特定的类型

*/

public function IsContentType($ctype) {

if (ereg("^2",$this->GetHead("http-state")) && $this->GetHead("content-type") == strtolower($ctype)) {

return true;

} else {

$this->m_error .= "类型不对 ".$this->GetHead("content-type")."<br>";

return false;

}

}

  

/**

* 用 HTTP 协议下载文件

*/

public function SaveToBin($savefilename) {

if (!$this->IsGetOK()) return false;

if (@feof($this->m_fp)) {

$this->m_error = "连接已经关闭!";

return false;

}

$fp = fopen($savefilename,"w") or die("写入文件 $savefilename 失败!");

while (!feof($this->m_fp)) {

@fwrite($fp,fgets($this->m_fp,256));

}

@fclose($this->m_fp);

return true;

}

  

/**

* 保存网页内容为 Text 文件

*/

public function SaveToText($savefilename) {

if ($this->IsText()) {

$this->SaveBinFile($savefilename);

} else {

return "";

}

}

  

/**

* 用 HTTP 协议获得一个网页的内容

*/

public function GetHtml() {

if (!$this->IsText()) return "";

if ($this->m_html!="") return $this->m_html;

if (!$this->m_fp||@feof($this->m_fp)) return "";

while(!feof($this->m_fp)) {

$this->m_html .= fgets($this->m_fp,256);

}

@fclose($this->m_fp);

return $this->m_html;

}

  

/**

* 开始 HTTP 会话

*/

public function PrivateStartSession() {

if (!$this->PrivateOpenHost()) {

$this->m_error .= "打开远程主机出错!";

return false;

}

if ($this->GetHead("http-edition")=="HTTP/1.1") {

$httpv = "HTTP/1.1";

} else {

$httpv = "HTTP/1.0";

}

fputs($this->m_fp,"GET ".$this->m_urlpath." $httpv\r\n");

fputs($this->m_fp,"Host: ".$this->m_host."\r\n");

fputs($this->m_fp,"Accept: */*\r\n");

fputs($this->m_fp,"User-Agent: Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2)\r\n");

#HTTP1.1协议必须指定文档结束后关闭链接,否则读取文档时无法使用feof判断结束

if ($httpv=="HTTP/1.1") {

fputs($this->m_fp,"Connection: Close\r\n\r\n");

} else {

fputs($this->m_fp,"\r\n");

}

$httpstas = fgets($this->m_fp,256);

$httpstas = split(" ",$httpstas);

$this->m_httphead["http-edition"] = trim($httpstas[0]);

$this->m_httphead["http-state"] = trim($httpstas[1]);

$this->m_httphead["http-describe"] = "";

for ($i=2;$i<count($httpstas);$i++) {

$this->m_httphead["http-describe"] .= " ".trim($httpstas[$i]);

}

while (!feof($this->m_fp)) {

$line = str_replace("\"","",trim(fgets($this->m_fp,256)));

if($line == "") break;

if (ereg(":",$line)) {

$lines = split(":",$line);

$this->m_httphead[strtolower(trim($lines[0]))] = trim($lines[1]);

}

}

}

  

/**

* 获得一个Http头的值

*/

public function GetHead($headname) {

$headname = strtolower($headname);

if (isset($this->m_httphead[$headname])) {

return $this->m_httphead[$headname];

} else {

return "";

}

}

  

/**

* 打开连接

*/

public function PrivateOpenHost() {

if ($this->m_host=="") return false;

$this->m_fp = @fsockopen($this->m_host, $this->m_port, &$errno, &$errstr,10);

if (!$this->m_fp){

$this->m_error = $errstr;

return false;

} else {

return true;

}

}

  

/**

* 关闭连接

*/

public function Close(){

@fclose($this->m_fp);

}

}

  

#两种使用方法,分别如下:

  

#打开网页

$httpdown = new HttpDownload();

$httpdown->OpenUrl("http://www.google.com.hk");

echo $httpdown->GetHtml();

$httpdown->Close();

  

  

#下载文件

$file = new HttpDownload(); # 实例化类

$file->OpenUrl("http://dldir1.qq.com/qqfile/qq/QQ8.2/17724/QQ8.2.exe"); # 远程文件地址

$file->SaveToBin("qq.exe"); # 保存路径及文件名

$file->Close(); # 释放资源

登录后复制

以上就是本文的全部内容,希望对大家的学习有所帮助。

您可能感兴趣的文章:

  • php下载远程文件类(支持断点续传)
  • php带密码功能并下载远程文件保存本地指定目录 修改加强版
  • 使用ThinkPHP自带的Http类下载远程图片到本地的实现代码
  • php中通过正则表达式下载内容中的远程图片的函数代码
  • 解析php多线程下载远程多个文件
  • 解析php下载远程图片函数 可伪造来路
  • PHP实现的下载远程图片自定义函数分享
  • PHP实现从远程下载文件的方法
  • php中使用gd库实现远程图片下载实例
  • PHP实现远程下载文件到本地
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

热门话题

Java教程
1664
14
CakePHP 教程
1422
52
Laravel 教程
1316
25
PHP教程
1267
29
C# 教程
1239
24
在PHP API中说明JSON Web令牌(JWT)及其用例。 在PHP API中说明JSON Web令牌(JWT)及其用例。 Apr 05, 2025 am 12:04 AM

JWT是一种基于JSON的开放标准,用于在各方之间安全地传输信息,主要用于身份验证和信息交换。1.JWT由Header、Payload和Signature三部分组成。2.JWT的工作原理包括生成JWT、验证JWT和解析Payload三个步骤。3.在PHP中使用JWT进行身份验证时,可以生成和验证JWT,并在高级用法中包含用户角色和权限信息。4.常见错误包括签名验证失败、令牌过期和Payload过大,调试技巧包括使用调试工具和日志记录。5.性能优化和最佳实践包括使用合适的签名算法、合理设置有效期、

解释PHP中的晚期静态绑定(静态::)。 解释PHP中的晚期静态绑定(静态::)。 Apr 03, 2025 am 12:04 AM

静态绑定(static::)在PHP中实现晚期静态绑定(LSB),允许在静态上下文中引用调用类而非定义类。1)解析过程在运行时进行,2)在继承关系中向上查找调用类,3)可能带来性能开销。

php程序在字符串中计数元音 php程序在字符串中计数元音 Feb 07, 2025 pm 12:12 PM

字符串是由字符组成的序列,包括字母、数字和符号。本教程将学习如何使用不同的方法在PHP中计算给定字符串中元音的数量。英语中的元音是a、e、i、o、u,它们可以是大写或小写。 什么是元音? 元音是代表特定语音的字母字符。英语中共有五个元音,包括大写和小写: a, e, i, o, u 示例 1 输入:字符串 = "Tutorialspoint" 输出:6 解释 字符串 "Tutorialspoint" 中的元音是 u、o、i、a、o、i。总共有 6 个元

什么是PHP魔术方法(__ -construct,__destruct,__call,__get,__ set等)并提供用例? 什么是PHP魔术方法(__ -construct,__destruct,__call,__get,__ set等)并提供用例? Apr 03, 2025 am 12:03 AM

PHP的魔法方法有哪些?PHP的魔法方法包括:1.\_\_construct,用于初始化对象;2.\_\_destruct,用于清理资源;3.\_\_call,处理不存在的方法调用;4.\_\_get,实现动态属性访问;5.\_\_set,实现动态属性设置。这些方法在特定情况下自动调用,提升代码的灵活性和效率。

PHP和Python:比较两种流行的编程语言 PHP和Python:比较两种流行的编程语言 Apr 14, 2025 am 12:13 AM

PHP和Python各有优势,选择依据项目需求。1.PHP适合web开发,尤其快速开发和维护网站。2.Python适用于数据科学、机器学习和人工智能,语法简洁,适合初学者。

PHP行动:现实世界中的示例和应用程序 PHP行动:现实世界中的示例和应用程序 Apr 14, 2025 am 12:19 AM

PHP在电子商务、内容管理系统和API开发中广泛应用。1)电子商务:用于购物车功能和支付处理。2)内容管理系统:用于动态内容生成和用户管理。3)API开发:用于RESTfulAPI开发和API安全性。通过性能优化和最佳实践,PHP应用的效率和可维护性得以提升。

PHP:网络开发的关键语言 PHP:网络开发的关键语言 Apr 13, 2025 am 12:08 AM

PHP是一种广泛应用于服务器端的脚本语言,特别适合web开发。1.PHP可以嵌入HTML,处理HTTP请求和响应,支持多种数据库。2.PHP用于生成动态网页内容,处理表单数据,访问数据库等,具有强大的社区支持和开源资源。3.PHP是解释型语言,执行过程包括词法分析、语法分析、编译和执行。4.PHP可以与MySQL结合用于用户注册系统等高级应用。5.调试PHP时,可使用error_reporting()和var_dump()等函数。6.优化PHP代码可通过缓存机制、优化数据库查询和使用内置函数。7

说明匹配表达式(PHP 8)及其与开关的不同。 说明匹配表达式(PHP 8)及其与开关的不同。 Apr 06, 2025 am 12:03 AM

在PHP8 中,match表达式是一种新的控制结构,用于根据表达式的值返回不同的结果。1)它类似于switch语句,但返回值而非执行语句块。2)match表达式使用严格比较(===),提升了安全性。3)它避免了switch语句中可能的break遗漏问题,增强了代码的简洁性和可读性。

See all articles