]> git.wh0rd.org - tt-rss.git/commitdiff
add a hash-based fetch_file_contents2()
authorAndrew Dolgov <noreply@madoka.volgo-balt.ru>
Wed, 30 Mar 2016 10:24:53 +0000 (13:24 +0300)
committerAndrew Dolgov <noreply@madoka.volgo-balt.ru>
Wed, 30 Mar 2016 10:25:32 +0000 (13:25 +0300)
include/functions.php

index d43943966c320b539a3be3ac478b0a9c88572c90..6a230a153da1e45f8e07da6a628946227f09d4b5 100755 (executable)
                }
        }
 
-       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;
                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);