Changeset 55646 for trunk/src/wp-includes/class-wp-http-curl.php
- Timestamp:
- 04/11/2023 10:04:58 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-http-curl.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-curl.php
r54133 r55646 329 329 * Grabs the headers of the cURL request. 330 330 * 331 * Each header is sent individually to this callback, so we append to the `$header` property332 * for temporary storage 331 * Each header is sent individually to this callback, and is appended to the `$header` property 332 * for temporary storage. 333 333 * 334 334 * @since 3.2.0 … … 346 346 * Grabs the body of the cURL request. 347 347 * 348 * The contents of the document are passed in chunks, so we append to the `$body`348 * The contents of the document are passed in chunks, and are appended to the `$body` 349 349 * property for temporary storage. Returning a length shorter than the length of 350 350 * `$data` passed in will cause cURL to abort the request with `CURLE_WRITE_ERROR`. … … 352 352 * @since 3.6.0 353 353 * 354 * @param resource $handle cURL handle.355 * @param string $data cURL request body.354 * @param resource $handle cURL handle. 355 * @param string $data cURL request body. 356 356 * @return int Total bytes of data written. 357 357 */
Note: See TracChangeset
for help on using the changeset viewer.