2008-08-01 01:00:07 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-09-03 00:36:08 -04:00
|
|
|
* Core HTTP Request API
|
2008-08-01 14:44:40 -04:00
|
|
|
*
|
2015-08-25 23:55:21 -04: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 01:00:07 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage HTTP
|
2008-12-30 17:53:35 -05:00
|
|
|
* @since 2.7.0
|
2008-08-01 01:00:07 -04:00
|
|
|
*/
|
|
|
|
|
2015-08-25 23:55:21 -04: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' );
|