mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-08 17:38:26 +01:00
69375b243a
See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@33881 git-svn-id: http://core.svn.wordpress.org/trunk@33850 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
712 B
PHP
19 lines
712 B
PHP
<?php
|
|
/**
|
|
* Core HTTP Request API
|
|
*
|
|
* Standardizes the HTTP requests for WordPress. Handles cookies, gzip encoding and decoding, chunk
|
|
* decoding, if HTTP 1.1 and various other difficult HTTP protocol implementations.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage HTTP
|
|
* @since 2.7.0
|
|
*/
|
|
|
|
require_once( ABSPATH . WPINC . '/http-functions.php' );
|
|
require_once( ABSPATH . WPINC . '/class-http.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-http-streams.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-http-curl.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-http-proxy.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-http-cookie.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-http-encoding.php' ); |