[Script Review] Ophalen van URL informatie
ik ben bezig met het schrijven van een script om informatie uit een URL te halen.
Dit is nog maar het begin maar wil toch al nuttige hulp/informatie/gedachten om het script al te verbeteren voordat het definitief klaar is.
Omdat ik regelmatig geconfronteerd met problemen door allow_url_open, safe_mode enz op verschillende servers maar toch steeds alle informatie nodig heb, dacht ik om het mezelf gemakkelijker te maken door er een class voor te schrijven.
Code (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
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
<?php
/****************************************\
Versie 1.0
Ophalen van URL informatie door middel van een class.
Het gebruik van deze class is vrij toegestaan voor iedereen.
-------------------------
Woordje uitleg:
Met deze class kan je informatie ophalen door het ingeven van een URL.
Je krijgt alle informatie te zien die je wenst, ook als je geen
toegang hebt tot je php.ini en je allow_url_fopen op uit (0, false, off)
staat. In sommige gevallen kan het ook zijn dat je safe_mode op enable staat
en/of je open_basedir, ook in deze class is er een oplossing voor gevonden.
-------------------------
Gebruiksaanwijzing:
SETTERS
->setFolder :: Zet de naam van de map waar inhoud bewaard moet worden
(true) : Maak map aan als deze niet bestaat
(false) : Geef een fout als map niet bestaat
->setNewName :: Wijzig de originele filename naar de nieuwe naam
(newName) : De naam die je wilt gebruiken
->setUrl :: Zet URL
(uri) : De link die je wilt gebruiken om informatie op te halen
GETTERS
->getHeaders :: Ophalen van header informatie
->getParse :: Ophalen van parse
->getContent :: Ophalen van inhoud
(true) : toont als array
(false) : toont als string
DOENERS
->save :: Bewaar de inhoud op eigen server
(boolean) :
- true : file overschrijven indien deze al bestaat
- false : toon een foutmelding indien deze file al bestaat
->unzip :: Unzip file indien een zipfile
\****************************************/
class getUrlInfo
{
// Public
public
$data,
$error,
$headers,
$url;
// Private
private
$allow_url_fopen,
$open_basedir,
$safe_mode;
// Protected
// Static
// Start het laden van nodige informatie
public function __construct(){
// Controleer INI en wijzig naar standaard indien nodig
$changeIni = array(
'allow_url_fopen' => '1',
'open_basedir' => NULL,
'safe_mode' => false,
);
foreach ($changeIni as $key => $value){
$setNow = ini_get($key);
if ($setNow !== $value){ ini_set($key, $value); }
$this->$key = ini_get($key);
$this->$key = !empty($this->$key) ? $this->$key : 0;
}
}
/**************************************************\
SETTERS
\**************************************************/
public function setUrl($uri=NULL){
$uri = trim($uri);
if (empty($uri))
{
// URL is leeg, toon een foutmelding
$this->error['setUrl'] = 'URL can\'t be empty';
} else {
// URL is gevuld
$this->url = $uri;
}
}
/**************************************************\
GETTERS
\**************************************************/
// Ophalen van header informatie
public function getHeaders()
{
if ($this->url)
{
if (!$this->headers = @get_headers($this->url, 1) or $this->allow_url_fopen == '0'){
$ch = curl_init($this->url);
@curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
@curl_setopt($ch, CURLOPT_URL, $this->url);
@curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
@curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
@curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
@curl_setopt($ch, CURLOPT_HEADER, array('Content-Type:application/x-www-form-urlencoded'));
@curl_setopt($ch, CURLOPT_NOBODY, true);
$header = curl_exec($ch);
curl_close($ch);
$explode = explode("\r\n", $header);
foreach ($explode as $value){
$value = trim($value);
if (!empty($value))
{
$keyVal = explode(':', $value);
$keyVal[0] = isset($keyVal[0]) ? trim($keyVal[0]) : NULL;
$keyVal[1] = isset($keyVal[1]) ? trim($keyVal[1]) : NULL;
if (!empty($keyVal[0]) && !empty($keyVal[1]))
{
$this->headers[$keyVal[0]] = '';
for ($i=1; $i<count($keyVal); $i++)
{
if (!empty($this->headers[$keyVal[0]])){ $this->headers[$keyVal[0]] .= ':'; }
$this->headers[$keyVal[0]] .= $keyVal[$i];
}
}
elseif (!empty($keyVal[0]))
{
$this->headers[] = $keyVal[0];
}
}
}
}
} else {
$this->error['getHeaders'] = 'No URL found, please use ->setUrl() to contineu';
}
}
// Parse URL
public function getParse(){
if (empty($this->url))
{
$this->error['getParse'] = 'No URL found, please use ->setUrl() to contineu';
}
else
{
// Parse Now
$this->parse = parse_url($this->url);
if (!isset($this->parse['host']) or empty($this->parse['host']))
{
$this->parse = parse_url('//'.$this->url);
if (!empty($this->parse['path']) and empty($this->parse['host']))
{
$this->parse['host'] = ltrim($this->parse['path'], '/');
unset($this->parse['path']);
}
}
$this->parse['path'] = isset($this->parse['path']) ? ltrim($this->parse['path'], '/') : NULL;
// Get File
$explode = explode('/', $this->parse['path']);
$file = end($explode);
if (count(explode('.', $file)) < 2)
{
unset($file);
}
else
{
$this->parse['path'] = rtrim(str_replace($file, '', $this->parse['path']), '/');
$explode = explode('.', $file);
$this->parse['file']['extention'] = end($explode);
$this->parse['file']['filename'] = str_replace('.'.$this->parse['file']['extention'], '', $file);
}
// Get Keys in Query
if (isset($this->parse['query']))
{
$keys = explode('&', $this->parse['query']);
foreach($keys as $key => $value)
{
$exp = explode('=', $value);
$this->parse['key'][$exp[0]] = $exp[1];
}
}
$this->parse['user'] = isset($this->parse['user']) ? $this->parse['user'] : NULL;
$this->parse['pass'] = isset($this->parse['pass']) ? $this->parse['pass'] : NULL;
// Get Domainname
$this->parse['domain'] = trim($this->parse['host']);
$this->parse['domain'] = preg_replace('/^(http:\/\/)*(www.)*/is', '', $this->parse['domain']);
$this->parse['domain'] = preg_replace('/\/.*$/is', '', $this->parse['domain']);
$parts = explode('.', $this->parse['domain']);
while (array_shift($parts) !== NULL)
{
$hostname = trim(implode(".", $parts));
if (!empty($hostname) && checkdnsrr($hostname, "A")) { $this->parse['domain'] = $hostname; }
}
// Check DNS
if (empty($this->parse['domain']) or !checkdnsrr($this->parse['domain']))
{
$this->error['dns'] = 'Not A Valid URL !!';
}
}
}
// Ophalen van inhoud
public function getContent($setAsArray=false)
{
$data = NULL;
if (empty($this->url))
{
$this->error['getParse'] = 'No URL found, please use ->setUrl() to contineu';
}
elseif (!$data = @file_get_contents($this->url))
{
$ch = curl_init($this->url);
// curl_setopt($ch, CURLOPT_AUTOREFERER, false);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $this->url);
$data = curl_exec($ch);
curl_close($ch);
}
if (!empty($data) and $setAsArray===true)
{
$this->data = explode("\n", $data); // Ontploffen naar lijn bij lijn
$this->data = array_map('trim', $this->data); // Scheren
$this->data = array_map('htmlentities', $this->data); // Toon de broncode
$this->data = array_filter($this->data, 'strlen'); // Verwijder alle NULL, FALSE en Lege Strings maar behoud de 0
}
elseif (!empty($data))
{
$this->data = $data;
}
}
}
// Start het ophalen van informatie
$urlInfo = new getUrlInfo;
$urlInfo->setUrl('http://www.phphulp.nl/');
$urlInfo->getHeaders();
$urlInfo->getParse();
$urlInfo->getContent(true);
// Toon informatie
print '<pre>'.PHP_EOL;
print_r($urlInfo);
print '</pre>'.PHP_EOL;
?>
/****************************************\
Versie 1.0
Ophalen van URL informatie door middel van een class.
Het gebruik van deze class is vrij toegestaan voor iedereen.
-------------------------
Woordje uitleg:
Met deze class kan je informatie ophalen door het ingeven van een URL.
Je krijgt alle informatie te zien die je wenst, ook als je geen
toegang hebt tot je php.ini en je allow_url_fopen op uit (0, false, off)
staat. In sommige gevallen kan het ook zijn dat je safe_mode op enable staat
en/of je open_basedir, ook in deze class is er een oplossing voor gevonden.
-------------------------
Gebruiksaanwijzing:
SETTERS
->setFolder :: Zet de naam van de map waar inhoud bewaard moet worden
(true) : Maak map aan als deze niet bestaat
(false) : Geef een fout als map niet bestaat
->setNewName :: Wijzig de originele filename naar de nieuwe naam
(newName) : De naam die je wilt gebruiken
->setUrl :: Zet URL
(uri) : De link die je wilt gebruiken om informatie op te halen
GETTERS
->getHeaders :: Ophalen van header informatie
->getParse :: Ophalen van parse
->getContent :: Ophalen van inhoud
(true) : toont als array
(false) : toont als string
DOENERS
->save :: Bewaar de inhoud op eigen server
(boolean) :
- true : file overschrijven indien deze al bestaat
- false : toon een foutmelding indien deze file al bestaat
->unzip :: Unzip file indien een zipfile
\****************************************/
class getUrlInfo
{
// Public
public
$data,
$error,
$headers,
$url;
// Private
private
$allow_url_fopen,
$open_basedir,
$safe_mode;
// Protected
// Static
// Start het laden van nodige informatie
public function __construct(){
// Controleer INI en wijzig naar standaard indien nodig
$changeIni = array(
'allow_url_fopen' => '1',
'open_basedir' => NULL,
'safe_mode' => false,
);
foreach ($changeIni as $key => $value){
$setNow = ini_get($key);
if ($setNow !== $value){ ini_set($key, $value); }
$this->$key = ini_get($key);
$this->$key = !empty($this->$key) ? $this->$key : 0;
}
}
/**************************************************\
SETTERS
\**************************************************/
public function setUrl($uri=NULL){
$uri = trim($uri);
if (empty($uri))
{
// URL is leeg, toon een foutmelding
$this->error['setUrl'] = 'URL can\'t be empty';
} else {
// URL is gevuld
$this->url = $uri;
}
}
/**************************************************\
GETTERS
\**************************************************/
// Ophalen van header informatie
public function getHeaders()
{
if ($this->url)
{
if (!$this->headers = @get_headers($this->url, 1) or $this->allow_url_fopen == '0'){
$ch = curl_init($this->url);
@curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
@curl_setopt($ch, CURLOPT_URL, $this->url);
@curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
@curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
@curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
@curl_setopt($ch, CURLOPT_HEADER, array('Content-Type:application/x-www-form-urlencoded'));
@curl_setopt($ch, CURLOPT_NOBODY, true);
$header = curl_exec($ch);
curl_close($ch);
$explode = explode("\r\n", $header);
foreach ($explode as $value){
$value = trim($value);
if (!empty($value))
{
$keyVal = explode(':', $value);
$keyVal[0] = isset($keyVal[0]) ? trim($keyVal[0]) : NULL;
$keyVal[1] = isset($keyVal[1]) ? trim($keyVal[1]) : NULL;
if (!empty($keyVal[0]) && !empty($keyVal[1]))
{
$this->headers[$keyVal[0]] = '';
for ($i=1; $i<count($keyVal); $i++)
{
if (!empty($this->headers[$keyVal[0]])){ $this->headers[$keyVal[0]] .= ':'; }
$this->headers[$keyVal[0]] .= $keyVal[$i];
}
}
elseif (!empty($keyVal[0]))
{
$this->headers[] = $keyVal[0];
}
}
}
}
} else {
$this->error['getHeaders'] = 'No URL found, please use ->setUrl() to contineu';
}
}
// Parse URL
public function getParse(){
if (empty($this->url))
{
$this->error['getParse'] = 'No URL found, please use ->setUrl() to contineu';
}
else
{
// Parse Now
$this->parse = parse_url($this->url);
if (!isset($this->parse['host']) or empty($this->parse['host']))
{
$this->parse = parse_url('//'.$this->url);
if (!empty($this->parse['path']) and empty($this->parse['host']))
{
$this->parse['host'] = ltrim($this->parse['path'], '/');
unset($this->parse['path']);
}
}
$this->parse['path'] = isset($this->parse['path']) ? ltrim($this->parse['path'], '/') : NULL;
// Get File
$explode = explode('/', $this->parse['path']);
$file = end($explode);
if (count(explode('.', $file)) < 2)
{
unset($file);
}
else
{
$this->parse['path'] = rtrim(str_replace($file, '', $this->parse['path']), '/');
$explode = explode('.', $file);
$this->parse['file']['extention'] = end($explode);
$this->parse['file']['filename'] = str_replace('.'.$this->parse['file']['extention'], '', $file);
}
// Get Keys in Query
if (isset($this->parse['query']))
{
$keys = explode('&', $this->parse['query']);
foreach($keys as $key => $value)
{
$exp = explode('=', $value);
$this->parse['key'][$exp[0]] = $exp[1];
}
}
$this->parse['user'] = isset($this->parse['user']) ? $this->parse['user'] : NULL;
$this->parse['pass'] = isset($this->parse['pass']) ? $this->parse['pass'] : NULL;
// Get Domainname
$this->parse['domain'] = trim($this->parse['host']);
$this->parse['domain'] = preg_replace('/^(http:\/\/)*(www.)*/is', '', $this->parse['domain']);
$this->parse['domain'] = preg_replace('/\/.*$/is', '', $this->parse['domain']);
$parts = explode('.', $this->parse['domain']);
while (array_shift($parts) !== NULL)
{
$hostname = trim(implode(".", $parts));
if (!empty($hostname) && checkdnsrr($hostname, "A")) { $this->parse['domain'] = $hostname; }
}
// Check DNS
if (empty($this->parse['domain']) or !checkdnsrr($this->parse['domain']))
{
$this->error['dns'] = 'Not A Valid URL !!';
}
}
}
// Ophalen van inhoud
public function getContent($setAsArray=false)
{
$data = NULL;
if (empty($this->url))
{
$this->error['getParse'] = 'No URL found, please use ->setUrl() to contineu';
}
elseif (!$data = @file_get_contents($this->url))
{
$ch = curl_init($this->url);
// curl_setopt($ch, CURLOPT_AUTOREFERER, false);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $this->url);
$data = curl_exec($ch);
curl_close($ch);
}
if (!empty($data) and $setAsArray===true)
{
$this->data = explode("\n", $data); // Ontploffen naar lijn bij lijn
$this->data = array_map('trim', $this->data); // Scheren
$this->data = array_map('htmlentities', $this->data); // Toon de broncode
$this->data = array_filter($this->data, 'strlen'); // Verwijder alle NULL, FALSE en Lege Strings maar behoud de 0
}
elseif (!empty($data))
{
$this->data = $data;
}
}
}
// Start het ophalen van informatie
$urlInfo = new getUrlInfo;
$urlInfo->setUrl('http://www.phphulp.nl/');
$urlInfo->getHeaders();
$urlInfo->getParse();
$urlInfo->getContent(true);
// Toon informatie
print '<pre>'.PHP_EOL;
print_r($urlInfo);
print '</pre>'.PHP_EOL;
?>
Er zijn nog geen reacties op dit bericht.