2008-08-01 07:00:07 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2008-08-01 20:44:40 +02:00
|
|
|
* Simple and uniform HTTP request API.
|
|
|
|
*
|
2015-08-26 05:55:21 +02:00
|
|
|
* 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.
|
2008-08-01 07:00:07 +02:00
|
|
|
*
|
2014-09-29 15:37:16 +02:00
|
|
|
* @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal
|
2008-08-05 19:01:49 +02:00
|
|
|
*
|
2008-08-01 07:00:07 +02:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage HTTP
|
2008-12-30 23:53:35 +01:00
|
|
|
* @since 2.7.0
|
2008-08-01 07:00:07 +02:00
|
|
|
*/
|
|
|
|
|
2015-08-26 05:55:21 +02:00
|
|
|
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' );
|