add a hash-based fetch_file_contents2()

This commit is contained in:
Andrew Dolgov 2016-03-30 13:24:53 +03:00
parent 00b6b66827
commit e3bc4591af
1 changed files with 28 additions and 1 deletions

View File

@ -333,7 +333,25 @@
}
}
function fetch_file_contents($url, $type = false, $login = false, $pass = false, $post_query = false, $timeout = false, $timestamp = 0, $useragent = false) {
// TODO: deprecated, remove
function fetch_file_contents($url, $type = false, $login = false, $pass = false, $post_query = false,
$timeout = false, $timestamp = 0, $useragent = false) {
$options = array(
"url" => $url,
"type" => $type,
"login" => $login,
"pass" => $pass,
"post_query" => $post_query,
"timeout" => $timeout,
"timestamp" => $timestamp,
"useragent" => $useragent
);
return fetch_file_contents2($options);
}
function fetch_file_contents2($options) {
global $fetch_last_error;
global $fetch_last_error_code;
@ -341,6 +359,15 @@
global $fetch_last_content_type;
global $fetch_curl_used;
$url = $options["url"];
$type = isset($options["type"]) ? $options["type"] : false;
$login = isset($options["login"]) ? $options["login"] : false;
$pass = isset($options["pass"]) ? $options["pass"] : false;
$post_query = isset($options["post_query"]) ? $options["post_query"] : false;
$timeout = isset($options["timeout"]) ? $options["timeout"] : false;
$timestamp = isset($options["timestamp"]) ? $options["timestamp"] : 0;
$useragent = isset($options["useragent"]) ? $options["useragent"] : false;
$url = ltrim($url, ' ');
$url = str_replace(' ', '%20', $url);