当前位置: 首页>>代码示例>>PHP>>正文


PHP WP_Http::processResponse方法代码示例

本文整理汇总了PHP中WP_Http::processResponse方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_Http::processResponse方法的具体用法?PHP WP_Http::processResponse怎么用?PHP WP_Http::processResponse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WP_Http的用法示例。


在下文中一共展示了WP_Http::processResponse方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: pre_http_request

 /**
  * Pre HTTP request
  *
  * @see https://github.com/WordPress/WordPress/blob/3.9.1/wp-includes/class-http.php#L150-L164
  * @return string
  */
 public function pre_http_request($preempt, $request, $url)
 {
     $response = file_get_contents(dirname(__FILE__) . '/Mock/GetIssuersXml200.http');
     $processedResponse = WP_Http::processResponse($response);
     $processedHeaders = WP_Http::processHeaders($processedResponse['headers'], $url);
     $processedHeaders['body'] = $processedResponse['body'];
     return $processedHeaders;
 }
开发者ID:wp-pay-gateways,项目名称:targetpay,代码行数:14,代码来源:RemoteGetTest.php

示例2: request


//.........这里部分代码省略.........
     }
     if (is_array($r['headers'])) {
         foreach ((array) $r['headers'] as $header => $headerValue) {
             $strHeaders .= $header . ': ' . $headerValue . "\r\n";
         }
     } else {
         $strHeaders .= $r['headers'];
     }
     if ($proxy->use_authentication()) {
         $strHeaders .= $proxy->authentication_header() . "\r\n";
     }
     $strHeaders .= "\r\n";
     if (!is_null($r['body'])) {
         $strHeaders .= $r['body'];
     }
     fwrite($handle, $strHeaders);
     if (!$r['blocking']) {
         stream_set_blocking($handle, 0);
         fclose($handle);
         return array('headers' => array(), 'body' => '', 'response' => array('code' => false, 'message' => false), 'cookies' => array());
     }
     $strResponse = '';
     $bodyStarted = false;
     $keep_reading = true;
     $block_size = 4096;
     if (isset($r['limit_response_size'])) {
         $block_size = min($block_size, $r['limit_response_size']);
     }
     // If streaming to a file setup the file handle.
     if ($r['stream']) {
         if (!WP_DEBUG) {
             $stream_handle = @fopen($r['filename'], 'w+');
         } else {
             $stream_handle = fopen($r['filename'], 'w+');
         }
         if (!$stream_handle) {
             return new WP_Error('http_request_failed', sprintf(__('Could not open handle for fopen() to %s'), $r['filename']));
         }
         $bytes_written = 0;
         while (!feof($handle) && $keep_reading) {
             $block = fread($handle, $block_size);
             if (!$bodyStarted) {
                 $strResponse .= $block;
                 if (strpos($strResponse, "\r\n\r\n")) {
                     $process = WP_Http::processResponse($strResponse);
                     $bodyStarted = true;
                     $block = $process['body'];
                     unset($strResponse);
                     $process['body'] = '';
                 }
             }
             $this_block_size = strlen($block);
             if (isset($r['limit_response_size']) && $bytes_written + $this_block_size > $r['limit_response_size']) {
                 $this_block_size = $r['limit_response_size'] - $bytes_written;
                 $block = substr($block, 0, $this_block_size);
             }
             $bytes_written_to_file = fwrite($stream_handle, $block);
             if ($bytes_written_to_file != $this_block_size) {
                 fclose($handle);
                 fclose($stream_handle);
                 return new WP_Error('http_request_failed', __('Failed to write request to temporary file.'));
             }
             $bytes_written += $bytes_written_to_file;
             $keep_reading = !isset($r['limit_response_size']) || $bytes_written < $r['limit_response_size'];
         }
         fclose($stream_handle);
     } else {
         $header_length = 0;
         while (!feof($handle) && $keep_reading) {
             $block = fread($handle, $block_size);
             $strResponse .= $block;
             if (!$bodyStarted && strpos($strResponse, "\r\n\r\n")) {
                 $header_length = strpos($strResponse, "\r\n\r\n") + 4;
                 $bodyStarted = true;
             }
             $keep_reading = !$bodyStarted || !isset($r['limit_response_size']) || strlen($strResponse) < $header_length + $r['limit_response_size'];
         }
         $process = WP_Http::processResponse($strResponse);
         unset($strResponse);
     }
     fclose($handle);
     $arrHeaders = WP_Http::processHeaders($process['headers'], $url);
     $response = array('headers' => $arrHeaders['headers'], 'body' => null, 'response' => $arrHeaders['response'], 'cookies' => $arrHeaders['cookies'], 'filename' => $r['filename']);
     // Handle redirects.
     if (false !== ($redirect_response = WP_HTTP::handle_redirects($url, $r, $response))) {
         return $redirect_response;
     }
     // If the body was chunk encoded, then decode it.
     if (!empty($process['body']) && isset($arrHeaders['headers']['transfer-encoding']) && 'chunked' == $arrHeaders['headers']['transfer-encoding']) {
         $process['body'] = WP_Http::chunkTransferDecode($process['body']);
     }
     if (true === $r['decompress'] && true === WP_Http_Encoding::should_decode($arrHeaders['headers'])) {
         $process['body'] = WP_Http_Encoding::decompress($process['body']);
     }
     if (isset($r['limit_response_size']) && strlen($process['body']) > $r['limit_response_size']) {
         $process['body'] = substr($process['body'], 0, $r['limit_response_size']);
     }
     $response['body'] = $process['body'];
     return $response;
 }
开发者ID:awais300,项目名称:bds.dev,代码行数:101,代码来源:class-http.php

示例3: request


//.........这里部分代码省略.........
     }
     // There are issues with the HTTPS and SSL protocols that cause errors that can be safely
     // ignored and should be ignored.
     if (true === $secure_transport) {
         $error_reporting = error_reporting(0);
     }
     $startDelay = time();
     $proxy = new WP_HTTP_Proxy();
     if (!WP_DEBUG) {
         if ($proxy->is_enabled() && $proxy->send_through_proxy($url)) {
             $handle = @fsockopen($proxy->host(), $proxy->port(), $iError, $strError, $r['timeout']);
         } else {
             $handle = @fsockopen($fsockopen_host, $arrURL['port'], $iError, $strError, $r['timeout']);
         }
     } else {
         if ($proxy->is_enabled() && $proxy->send_through_proxy($url)) {
             $handle = fsockopen($proxy->host(), $proxy->port(), $iError, $strError, $r['timeout']);
         } else {
             $handle = fsockopen($fsockopen_host, $arrURL['port'], $iError, $strError, $r['timeout']);
         }
     }
     $endDelay = time();
     // If the delay is greater than the timeout then fsockopen should't be used, because it will
     // cause a long delay.
     $elapseDelay = $endDelay - $startDelay > $r['timeout'];
     if (true === $elapseDelay) {
         add_option('disable_fsockopen', $endDelay, null, true);
     }
     if (false === $handle) {
         return new WP_Error('http_request_failed', $iError . ': ' . $strError);
     }
     stream_set_timeout($handle, $r['timeout']);
     if ($proxy->is_enabled() && $proxy->send_through_proxy($url)) {
         //Some proxies require full URL in this field.
         $requestPath = $url;
     } else {
         $requestPath = $arrURL['path'] . (isset($arrURL['query']) ? '?' . $arrURL['query'] : '');
     }
     if (empty($requestPath)) {
         $requestPath .= '/';
     }
     $strHeaders = strtoupper($r['method']) . ' ' . $requestPath . ' HTTP/' . $r['httpversion'] . "\r\n";
     if ($proxy->is_enabled() && $proxy->send_through_proxy($url)) {
         $strHeaders .= 'Host: ' . $arrURL['host'] . ':' . $arrURL['port'] . "\r\n";
     } else {
         $strHeaders .= 'Host: ' . $arrURL['host'] . "\r\n";
     }
     if (isset($r['user-agent'])) {
         $strHeaders .= 'User-agent: ' . $r['user-agent'] . "\r\n";
     }
     if (is_array($r['headers'])) {
         foreach ((array) $r['headers'] as $header => $headerValue) {
             $strHeaders .= $header . ': ' . $headerValue . "\r\n";
         }
     } else {
         $strHeaders .= $r['headers'];
     }
     if ($proxy->use_authentication()) {
         $strHeaders .= $proxy->authentication_header() . "\r\n";
     }
     $strHeaders .= "\r\n";
     if (!is_null($r['body'])) {
         $strHeaders .= $r['body'];
     }
     fwrite($handle, $strHeaders);
     if (!$r['blocking']) {
         fclose($handle);
         return array('headers' => array(), 'body' => '', 'response' => array('code' => false, 'message' => false), 'cookies' => array());
     }
     $strResponse = '';
     while (!feof($handle)) {
         $strResponse .= fread($handle, 4096);
     }
     fclose($handle);
     if (true === $secure_transport) {
         error_reporting($error_reporting);
     }
     $process = WP_Http::processResponse($strResponse);
     $arrHeaders = WP_Http::processHeaders($process['headers']);
     // Is the response code within the 400 range?
     if ((int) $arrHeaders['response']['code'] >= 400 && (int) $arrHeaders['response']['code'] < 500) {
         return new WP_Error('http_request_failed', $arrHeaders['response']['code'] . ': ' . $arrHeaders['response']['message']);
     }
     // If location is found, then assume redirect and redirect to location.
     if (isset($arrHeaders['headers']['location'])) {
         if ($r['redirection']-- > 0) {
             return $this->request($arrHeaders['headers']['location'], $r);
         } else {
             return new WP_Error('http_request_failed', __('Too many redirects.'));
         }
     }
     // If the body was chunk encoded, then decode it.
     if (!empty($process['body']) && isset($arrHeaders['headers']['transfer-encoding']) && 'chunked' == $arrHeaders['headers']['transfer-encoding']) {
         $process['body'] = WP_Http::chunkTransferDecode($process['body']);
     }
     if (true === $r['decompress'] && true === WP_Http_Encoding::should_decode($arrHeaders['headers'])) {
         $process['body'] = WP_Http_Encoding::decompress($process['body']);
     }
     return array('headers' => $arrHeaders['headers'], 'body' => $process['body'], 'response' => $arrHeaders['response'], 'cookies' => $arrHeaders['cookies']);
 }
开发者ID:steveh,项目名称:wordpress,代码行数:101,代码来源:http.php

示例4: request

 /**
  * Send a HTTP request to a URI using fsockopen().
  *
  * Does not support non-blocking mode.
  *
  * @see WP_Http::request For default options descriptions.
  *
  * @since 2.7
  * @access public
  * @param string $url URI resource.
  * @param str|array $args Optional. Override the defaults.
  * @return array 'headers', 'body', and 'response' keys.
  */
 function request($url, $args = array())
 {
     $defaults = array('method' => 'GET', 'timeout' => 5, 'redirection' => 5, 'httpversion' => '1.0', 'blocking' => true, 'headers' => array(), 'body' => null);
     $r = wp_parse_args($args, $defaults);
     if (isset($r['headers']['User-Agent'])) {
         $r['user-agent'] = $r['headers']['User-Agent'];
         unset($r['headers']['User-Agent']);
     } else {
         if (isset($r['headers']['user-agent'])) {
             $r['user-agent'] = $r['headers']['user-agent'];
             unset($r['headers']['user-agent']);
         }
     }
     $iError = null;
     // Store error number
     $strError = null;
     // Store error string
     $arrURL = parse_url($url);
     $secure_transport = false;
     if (!isset($arrURL['port'])) {
         if (($arrURL['scheme'] == 'ssl' || $arrURL['scheme'] == 'https') && extension_loaded('openssl')) {
             $arrURL['host'] = 'ssl://' . $arrURL['host'];
             $arrURL['port'] = apply_filters('http_request_port', 443);
             $secure_transport = true;
         } else {
             $arrURL['port'] = apply_filters('http_request_default_port', 80);
         }
     } else {
         $arrURL['port'] = apply_filters('http_request_port', $arrURL['port']);
     }
     // There are issues with the HTTPS and SSL protocols that cause errors
     // that can be safely ignored and should be ignored.
     if (true === $secure_transport) {
         $error_reporting = error_reporting(0);
     }
     $startDelay = time();
     if (!defined('WP_DEBUG') || defined('WP_DEBUG') && false === WP_DEBUG) {
         $handle = @fsockopen($arrURL['host'], $arrURL['port'], $iError, $strError, $r['timeout']);
     } else {
         $handle = fsockopen($arrURL['host'], $arrURL['port'], $iError, $strError, $r['timeout']);
     }
     $endDelay = time();
     // If the delay is greater than the timeout then fsockopen should't be
     // used, because it will cause a long delay.
     $elapseDelay = $endDelay - $startDelay > $r['timeout'];
     if (true === $elapseDelay) {
         add_option('disable_fsockopen', $endDelay, null, true);
     }
     if (false === $handle) {
         return new WP_Error('http_request_failed', $iError . ': ' . $strError);
     }
     // WordPress supports PHP 4.3, which has this function. Removed sanity
     // checking for performance reasons.
     stream_set_timeout($handle, $r['timeout']);
     $requestPath = $arrURL['path'] . (isset($arrURL['query']) ? '?' . $arrURL['query'] : '');
     $requestPath = empty($requestPath) ? '/' : $requestPath;
     $strHeaders = '';
     $strHeaders .= strtoupper($r['method']) . ' ' . $requestPath . ' HTTP/' . $r['httpversion'] . "\r\n";
     $strHeaders .= 'Host: ' . $arrURL['host'] . "\r\n";
     if (isset($r['user-agent'])) {
         $strHeaders .= 'User-agent: ' . $r['user-agent'] . "\r\n";
     }
     if (is_array($r['headers'])) {
         foreach ((array) $r['headers'] as $header => $headerValue) {
             $strHeaders .= $header . ': ' . $headerValue . "\r\n";
         }
     } else {
         $strHeaders .= $r['headers'];
     }
     $strHeaders .= "\r\n";
     if (!is_null($r['body'])) {
         $strHeaders .= $r['body'];
     }
     fwrite($handle, $strHeaders);
     if (!$r['blocking']) {
         fclose($handle);
         return array('headers' => array(), 'body' => '', 'response' => array('code', 'message'));
     }
     $strResponse = '';
     while (!feof($handle)) {
         $strResponse .= fread($handle, 4096);
     }
     fclose($handle);
     if (true === $secure_transport) {
         error_reporting($error_reporting);
     }
     $process = WP_Http::processResponse($strResponse);
//.........这里部分代码省略.........
开发者ID:blowery,项目名称:wordpress,代码行数:101,代码来源:http.php


注:本文中的WP_Http::processResponse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。