Changeset 48586 for trunk/src/wp-includes/class-http.php
- Timestamp:
- 07/23/2020 07:59:16 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-http.php
r48462 r48586 510 510 * @since 3.2.0 511 511 * 512 * @param array $args Request arguments.513 * @param string $url URL to Request.512 * @param array $args Request arguments. 513 * @param string $url URL to request. 514 514 * @return string|false Class name for the first transport that claims to support the request. 515 515 * False if no transport claims to support the request. … … 560 560 * @see WP_Http::request() 561 561 * 562 * @param string $url URL to Request.563 * @param array $args Request arguments.562 * @param string $url URL to request. 563 * @param array $args Request arguments. 564 564 * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. 565 565 * A WP_Error instance upon error. … … 616 616 * @since 2.7.0 617 617 * 618 * @param string $urlThe request URL.618 * @param string $url The request URL. 619 619 * @param string|array $args Optional. Override the defaults. 620 620 * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. … … 634 634 * @since 2.7.0 635 635 * 636 * @param string $urlThe request URL.636 * @param string $url The request URL. 637 637 * @param string|array $args Optional. Override the defaults. 638 638 * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. … … 676 676 * 677 677 * @param string|array $headers 678 * @param string $urlThe URL that was requested.678 * @param string $url The URL that was requested. 679 679 * @return array Processed string headers. If duplicate headers are encountered, 680 680 * then a numbered array is returned as the value of that header-key.
Note: See TracChangeset
for help on using the changeset viewer.