Changeset 10359
- Timestamp:
- 01/14/2009 09:40:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/http.php
r10320 r10359 1142 1142 * @param string $url Site URL to retrieve. 1143 1143 * @param array $args Optional. Override the defaults. 1144 * @return string The body of the response1144 * @return WP_Error|string The body of the response or WP_Error on failure. 1145 1145 */ 1146 1146 function wp_remote_request($url, $args = array()) { … … 1158 1158 * @param string $url Site URL to retrieve. 1159 1159 * @param array $args Optional. Override the defaults. 1160 * @return string The body of the response1160 * @return WP_Error|string The body of the response or WP_Error on failure. 1161 1161 */ 1162 1162 function wp_remote_get($url, $args = array()) { … … 1175 1175 * @param string $url Site URL to retrieve. 1176 1176 * @param array $args Optional. Override the defaults. 1177 * @return string The body of the response1177 * @return WP_Error|string The body of the response or WP_Error on failure. 1178 1178 */ 1179 1179 function wp_remote_post($url, $args = array()) { … … 1191 1191 * @param string $url Site URL to retrieve. 1192 1192 * @param array $args Optional. Override the defaults. 1193 * @return string The body of the response1193 * @return WP_Error|string The body of the response or WP_Error on failure. 1194 1194 */ 1195 1195 function wp_remote_head($url, $args = array()) {
Note: See TracChangeset
for help on using the changeset viewer.