📂 File Manager
📝 Edit File: class-wp-http-requests-response.php
<?php /** * HTTP API: WP_HTTP_Requests_Response class * * @package WordPress * @subpackage HTTP * @since 4.6.0 */ /** * Core wrapper object for a WpOrg\Requests\Response for standardization. * * @since 4.6.0 * * @see WP_HTTP_Response */ class WP_HTTP_Requests_Response extends WP_HTTP_Response { /** * Requests Response object. * * @since 4.6.0 * @var \WpOrg\Requests\Response */ protected $response; /** * Filename the response was saved to. * * @since 4.6.0 * @var string|null */ protected $filename; /** * Constructor. * * @since 4.6.0 * * @param \WpOrg\Requests\Response $response HTTP response. * @param string $filename Optional. File name. Default empty. */ public function __construct( WpOrg\Requests\Response $response, $filename = '' ) { $this->response = $response; $this->filename = $filename; } /** * Retrieves the response object for the request. * * @since 4.6.0 * * @return WpOrg\Requests\Response HTTP response. */ public function get_response_object() { return $this->response; } /** * Retrieves headers associated with the response. * * @since 4.6.0 * * @return \WpOrg\Requests\Utility\CaseInsensitiveDictionary Map of header name to header value. */ public function get_headers() { // Ensure headers remain case-insensitive. $converted = new WpOrg\Requests\Utility\CaseInsensitiveDictionary(); foreach ( $this->response->headers->getAll() as $key => $value ) { if ( count( $value ) === 1 ) { $converted[ $key ] = $value[0]; } else { $converted[ $key ] = $value; } } return $converted; } /** * Sets all header values. * * @since 4.6.0 * * @param array $headers Map of header name to header value. */ public function set_headers( $headers ) { $this->response->headers = new WpOrg\Requests\Response\Headers( $headers ); } /** * Sets a single HTTP header. * * @since 4.6.0 * * @param string $key Header name. * @param string $value Header value. * @param bool $replace Optional. Whether to replace an existing header of the same name. * Default true. */ public function header( $key, $value, $replace = true ) { if ( $replace ) { unset( $this->response->headers[ $key ] ); } $this->response->headers[ $key ] = $value; } /** * Retrieves the HTTP return code for the response. * * @since 4.6.0 * * @return int The 3-digit HTTP status code. */ public function get_status() { return $this->response->status_code; } /** * Sets the 3-digit HTTP status code. * * @since 4.6.0 * * @param int $code HTTP status. */ public function set_status( $code ) { $this->response->status_code = absint( $code ); } /** * Retrieves the response data. * * @since 4.6.0 * * @return string Response data. */ public function get_data() { return $this->response->body; } /** * Sets the response data. * * @since 4.6.0 * * @param string $data Response data. */ public function set_data( $data ) { $this->response->body = $data; } /** * Retrieves cookies from the response. * * @since 4.6.0 * * @return WP_HTTP_Cookie[] List of cookie objects. */ public function get_cookies() { $cookies = array(); foreach ( $this->response->cookies as $cookie ) { $cookies[] = new WP_Http_Cookie( array( 'name' => $cookie->name, 'value' => urldecode( $cookie->value ), 'expires' => isset( $cookie->attributes['expires'] ) ? $cookie->attributes['expires'] : null, 'path' => isset( $cookie->attributes['path'] ) ? $cookie->attributes['path'] : null, 'domain' => isset( $cookie->attributes['domain'] ) ? $cookie->attributes['domain'] : null, 'host_only' => isset( $cookie->flags['host-only'] ) ? $cookie->flags['host-only'] : null, ) ); } return $cookies; } /** * Converts the object to a WP_Http response array. * * @since 4.6.0 * * @return array WP_Http response array, per WP_Http::request(). */ public function to_array() { return array( 'headers' => $this->get_headers(), 'body' => $this->get_data(), 'response' => array( 'code' => $this->get_status(), 'message' => get_status_header_desc( $this->get_status() ), ), 'cookies' => $this->get_cookies(), 'filename' => $this->filename, ); } }
Cancel
Type
Item Name
Actions
📁
..
📁
assets
✏️
📁
block-bindings
✏️
📁
block-patterns
✏️
📁
block-supports
✏️
📁
blocks
✏️
📁
certificates
✏️
📁
css
✏️
📁
customize
✏️
📁
fonts
✏️
📁
html-api
✏️
📁
ID3
✏️
📁
images
✏️
📁
interactivity-api
✏️
📁
IXR
✏️
📁
js
✏️
📁
l10n
✏️
📁
php-compat
✏️
📁
PHPMailer
✏️
📁
pomo
✏️
📁
Requests
✏️
📁
rest-api
✏️
📁
SimplePie
✏️
📁
sitemaps
✏️
📁
sodium_compat
✏️
📁
style-engine
✏️
📁
Text
✏️
📁
theme-compat
✏️
📁
widgets
✏️
📄
admin-bar.php
✏️
📝
📄
atomlib.php
✏️
📝
📄
author-template.php
✏️
📝
📄
block-bindings.php
✏️
📝
📄
block-editor.php
✏️
📝
📄
block-i18n.json
✏️
📝
📄
block-patterns.php
✏️
📝
📄
block-template-utils.php
✏️
📝
📄
block-template.php
✏️
📝
📄
blocks.php
✏️
📝
📄
bookmark-template.php
✏️
📝
📄
bookmark.php
✏️
📝
📄
cache-compat.php
✏️
📝
📄
cache.php
✏️
📝
📄
canonical.php
✏️
📝
📄
capabilities.php
✏️
📝
📄
category-template.php
✏️
📝
📄
category.php
✏️
📝
📄
class-avif-info.php
✏️
📝
📄
class-feed.php
✏️
📝
📄
class-http.php
✏️
📝
📄
class-IXR.php
✏️
📝
📄
class-json.php
✏️
📝
📄
class-oembed.php
✏️
📝
📄
class-phpass.php
✏️
📝
📄
class-phpmailer.php
✏️
📝
📄
class-pop3.php
✏️
📝
📄
class-requests.php
✏️
📝
📄
class-simplepie.php
✏️
📝
📄
class-smtp.php
✏️
📝
📄
class-snoopy.php
✏️
📝
📄
class-walker-category-dropdown.php
✏️
📝
📄
class-walker-category.php
✏️
📝
📄
class-walker-comment.php
✏️
📝
📄
class-walker-nav-menu.php
✏️
📝
📄
class-walker-page-dropdown.php
✏️
📝
📄
class-walker-page.php
✏️
📝
📄
class-wp-admin-bar.php
✏️
📝
📄
class-wp-ajax-response.php
✏️
📝
📄
class-wp-application-passwords.php
✏️
📝
📄
class-wp-block-bindings-registry.php
✏️
📝
📄
class-wp-block-bindings-source.php
✏️
📝
📄
class-wp-block-editor-context.php
✏️
📝
📄
class-wp-block-list.php
✏️
📝
📄
class-wp-block-metadata-registry.php
✏️
📝
📄
class-wp-block-parser-block.php
✏️
📝
📄
class-wp-block-parser-frame.php
✏️
📝
📄
class-wp-block-parser.php
✏️
📝
📄
class-wp-block-pattern-categories-registry.php
✏️
📝
📄
class-wp-block-patterns-registry.php
✏️
📝
📄
class-wp-block-styles-registry.php
✏️
📝
📄
class-wp-block-supports.php
✏️
📝
📄
class-wp-block-template.php
✏️
📝
📄
class-wp-block-templates-registry.php
✏️
📝
📄
class-wp-block-type-registry.php
✏️
📝
📄
class-wp-block-type.php
✏️
📝
📄
class-wp-block.php
✏️
📝
📄
class-wp-classic-to-block-menu-converter.php
✏️
📝
📄
class-wp-comment-query.php
✏️
📝
📄
class-wp-comment.php
✏️
📝
📄
class-wp-customize-control.php
✏️
📝
📄
class-wp-customize-manager.php
✏️
📝
📄
class-wp-customize-nav-menus.php
✏️
📝
📄
class-wp-customize-panel.php
✏️
📝
📄
class-wp-customize-section.php
✏️
📝
📄
class-wp-customize-setting.php
✏️
📝
📄
class-wp-customize-widgets.php
✏️
📝
📄
class-wp-date-query.php
✏️
📝
📄
class-wp-dependencies.php
✏️
📝
📄
class-wp-dependency.php
✏️
📝
📄
class-wp-duotone.php
✏️
📝
📄
class-wp-editor.php
✏️
📝
📄
class-wp-embed.php
✏️
📝
📄
class-wp-error.php
✏️
📝
📄
class-wp-exception.php
✏️
📝
📄
class-wp-fatal-error-handler.php
✏️
📝
📄
class-wp-feed-cache-transient.php
✏️
📝
📄
class-wp-feed-cache.php
✏️
📝
📄
class-wp-hook.php
✏️
📝
📄
class-wp-http-cookie.php
✏️
📝
📄
class-wp-http-curl.php
✏️
📝
📄
class-wp-http-encoding.php
✏️
📝
📄
class-wp-http-ixr-client.php
✏️
📝
📄
class-wp-http-proxy.php
✏️
📝
📄
class-wp-http-requests-hooks.php
✏️
📝
📄
class-wp-http-requests-response.php
✏️
📝
📄
class-wp-http-response.php
✏️
📝
📄
class-wp-http-streams.php
✏️
📝
📄
class-wp-http.php
✏️
📝
📄
class-wp-image-editor-gd.php
✏️
📝
📄
class-wp-image-editor-imagick.php
✏️
📝
📄
class-wp-image-editor.php
✏️
📝
📄
class-wp-list-util.php
✏️
📝
📄
class-wp-locale-switcher.php
✏️
📝
📄
class-wp-locale.php
✏️
📝
📄
class-wp-matchesmapregex.php
✏️
📝
📄
class-wp-meta-query.php
✏️
📝
📄
class-wp-metadata-lazyloader.php
✏️
📝
📄
class-wp-navigation-fallback.php
✏️
📝
📄
class-wp-network-query.php
✏️
📝
📄
class-wp-network.php
✏️
📝
📄
class-wp-object-cache.php
✏️
📝
📄
class-wp-oembed-controller.php
✏️
📝
📄
class-wp-oembed.php
✏️
📝
📄
class-wp-paused-extensions-storage.php
✏️
📝
📄
class-wp-plugin-dependencies.php
✏️
📝
📄
class-wp-post-type.php
✏️
📝
📄
class-wp-post.php
✏️
📝
📄
class-wp-query.php
✏️
📝
📄
class-wp-recovery-mode-cookie-service.php
✏️
📝
📄
class-wp-recovery-mode-email-service.php
✏️
📝
📄
class-wp-recovery-mode-key-service.php
✏️
📝
📄
class-wp-recovery-mode-link-service.php
✏️
📝
📄
class-wp-recovery-mode.php
✏️
📝
📄
class-wp-rewrite.php
✏️
📝
📄
class-wp-role.php
✏️
📝
📄
class-wp-roles.php
✏️
📝
📄
class-wp-script-modules.php
✏️
📝
📄
class-wp-scripts.php
✏️
📝
📄
class-wp-session-tokens.php
✏️
📝
📄
class-wp-simplepie-file.php
✏️
📝
📄
class-wp-simplepie-sanitize-kses.php
✏️
📝
📄
class-wp-site-query.php
✏️
📝
📄
class-wp-site.php
✏️
📝
📄
class-wp-styles.php
✏️
📝
📄
class-wp-tax-query.php
✏️
📝
📄
class-wp-taxonomy.php
✏️
📝
📄
class-wp-term-query.php
✏️
📝
📄
class-wp-term.php
✏️
📝
📄
class-wp-text-diff-renderer-inline.php
✏️
📝
📄
class-wp-text-diff-renderer-table.php
✏️
📝
📄
class-wp-textdomain-registry.php
✏️
📝
📄
class-wp-theme-json-data.php
✏️
📝
📄
class-wp-theme-json-resolver.php
✏️
📝
📄
class-wp-theme-json-schema.php
✏️
📝
📄
class-wp-theme-json.php
✏️
📝
📄
class-wp-theme.php
✏️
📝
📄
class-wp-token-map.php
✏️
📝
📄
class-wp-user-meta-session-tokens.php
✏️
📝
📄
class-wp-user-query.php
✏️
📝
📄
class-wp-user-request.php
✏️
📝
📄
class-wp-user.php
✏️
📝
📄
class-wp-walker.php
✏️
📝
📄
class-wp-widget-factory.php
✏️
📝
📄
class-wp-widget.php
✏️
📝
📄
class-wp-xmlrpc-server.php
✏️
📝
📄
class-wp.php
✏️
📝
📄
class-wpdb.php
✏️
📝
📄
class.wp-dependencies.php
✏️
📝
📄
class.wp-scripts.php
✏️
📝
📄
class.wp-styles.php
✏️
📝
📄
comment-template.php
✏️
📝
📄
comment.php
✏️
📝
📄
compat.php
✏️
📝
📄
cron.php
✏️
📝
📄
date.php
✏️
📝
📄
default-constants.php
✏️
📝
📄
default-filters.php
✏️
📝
📄
default-widgets.php
✏️
📝
📄
deprecated.php
✏️
📝
📄
embed-template.php
✏️
📝
📄
embed.php
✏️
📝
📄
error-protection.php
✏️
📝
📄
feed-atom-comments.php
✏️
📝
📄
feed-atom.php
✏️
📝
📄
feed-rdf.php
✏️
📝
📄
feed-rss.php
✏️
📝
📄
feed-rss2-comments.php
✏️
📝
📄
feed-rss2.php
✏️
📝
📄
feed.php
✏️
📝
📄
fonts.php
✏️
📝
📄
formatting.php
✏️
📝
📄
functions.php
✏️
📝
📄
functions.wp-scripts.php
✏️
📝
📄
functions.wp-styles.php
✏️
📝
📄
general-template.php
✏️
📝
📄
global-styles-and-settings.php
✏️
📝
📄
http.php
✏️
📝
📄
https-detection.php
✏️
📝
📄
https-migration.php
✏️
📝
📄
kses.php
✏️
📝
📄
l10n.php
✏️
📝
📄
link-template.php
✏️
📝
📄
load.php
✏️
📝
📄
locale.php
✏️
📝
📄
media-template.php
✏️
📝
📄
media.php
✏️
📝
📄
meta.php
✏️
📝
📄
ms-blogs.php
✏️
📝
📄
ms-default-constants.php
✏️
📝
📄
ms-default-filters.php
✏️
📝
📄
ms-deprecated.php
✏️
📝
📄
ms-files.php
✏️
📝
📄
ms-functions.php
✏️
📝
📄
ms-load.php
✏️
📝
📄
ms-network.php
✏️
📝
📄
ms-settings.php
✏️
📝
📄
ms-site.php
✏️
📝
📄
nav-menu-template.php
✏️
📝
📄
nav-menu.php
✏️
📝
📄
option.php
✏️
📝
📄
pluggable-deprecated.php
✏️
📝
📄
pluggable.php
✏️
📝
📄
plugin.php
✏️
📝
📄
post-formats.php
✏️
📝
📄
post-template.php
✏️
📝
📄
post-thumbnail-template.php
✏️
📝
📄
post.php
✏️
📝
📄
query.php
✏️
📝
📄
registration-functions.php
✏️
📝
📄
registration.php
✏️
📝
📄
rest-api.php
✏️
📝
📄
revision.php
✏️
📝
📄
rewrite.php
✏️
📝
📄
robots-template.php
✏️
📝
📄
rss-functions.php
✏️
📝
📄
rss.php
✏️
📝
📄
script-loader.php
✏️
📝
📄
script-modules.php
✏️
📝
📄
session.php
✏️
📝
📄
shortcodes.php
✏️
📝
📄
sitemaps.php
✏️
📝
📄
spl-autoload-compat.php
✏️
📝
📄
style-engine.php
✏️
📝
📄
taxonomy.php
✏️
📝
📄
template-canvas.php
✏️
📝
📄
template-loader.php
✏️
📝
📄
template.php
✏️
📝
📄
theme-i18n.json
✏️
📝
📄
theme-previews.php
✏️
📝
📄
theme-templates.php
✏️
📝
📄
theme.json
✏️
📝
📄
theme.php
✏️
📝
📄
update.php
✏️
📝
📄
user.php
✏️
📝
📄
vars.php
✏️
📝
📄
version.php
✏️
📝
📄
widgets.php
✏️
📝
📄
wp-db.php
✏️
📝
📄
wp-diff.php
✏️
📝