File manager - Edit - /home/proidvn/site.proid.vn/wp-content/plugins/ranktool/src/helper/seostats.httprequest.php
Back
<?php if ( ! defined('SEOSTATSPATH')) exit('No direct access allowed!'); /** * HTTP Request Helper Class * * @package SEOstats * @author Stephan Schmitz <eyecatchup@gmail.com> * @updated 2012/06/15 */ class HttpRequest extends SEOstats { /** * HTTP GET/POST request with curl. * @access public * @param String $url The Request URL * @param Array $postData Optional: POST data array to be send. * @return Mixed On success, returns the response string. * Else, the the HTTP status code received * in reponse to the request. */ public static function sendRequest($url, $postData = false, $postJson = false) { $ch = curl_init($url); curl_setopt_array($ch, array( CURLOPT_USERAGENT => sprintf('SEOstats %s https://github.com/eyecatchup/SEOstats', SEOstats::BUILD_NO), CURLOPT_RETURNTRANSFER => 1, CURLOPT_CONNECTTIMEOUT => 30, CURLOPT_FOLLOWLOCATION => 1, CURLOPT_MAXREDIRS => 2, CURLOPT_SSL_VERIFYPEER => 0 )); if (false != $postData) { if (false != $postJson) { curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/json')); $data = json_encode($postData); } else { $data = http_build_query($postData); } curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); } $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if($httpCode == 200) { return $response; } else { return $httpCode; } } /** * HTTP HEAD request with curl. * * @access private * @param String $a The request URL * @return Integer Returns the HTTP status code received in * response to a GET request of the input URL. */ public static function getHttpCode($url) { $ch = curl_init($url); curl_setopt_array($ch, array( CURLOPT_USERAGENT => sprintf('SEOstats %s https://github.com/eyecatchup/SEOstats', SEOstats::BUILD_NO), CURLOPT_RETURNTRANSFER => 1, CURLOPT_CONNECTTIMEOUT => 10, CURLOPT_FOLLOWLOCATION => 1, CURLOPT_MAXREDIRS => 2, CURLOPT_SSL_VERIFYPEER => 0, CURLOPT_NOBODY => 1 )); curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); return (int) $httpCode; } public function getFile($url, $file) { $fp = fopen("$file", 'w'); $ch = curl_init($url); curl_setopt_array($ch, array( CURLOPT_USERAGENT => sprintf('SEOstats %s https://github.com/eyecatchup/SEOstats', SEOstats::BUILD_NO), CURLOPT_RETURNTRANSFER => 1, CURLOPT_CONNECTTIMEOUT => 30, CURLOPT_FOLLOWLOCATION => 1, CURLOPT_MAXREDIRS => 2, CURLOPT_SSL_VERIFYPEER => 0, CURLOPT_FILE => $fp )); curl_exec($ch); curl_close($ch); fclose($fp); clearstatcache(); return (bool) FALSE !== stat($file); } } /* End of file seostats.httprequest.php */ /* Location: ./src/helper/seostats.httprequest.php */
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0.12 |
proxy
|
phpinfo
|
Settings