Changeset 49963 for trunk/src/wp-includes/class-wp-http-encoding.php
- Timestamp:
- 01/15/2021 08:06:50 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-encoding.php
r49927 r49963 28 28 * @param string $supports Optional, not used. When implemented it will choose 29 29 * the right compression based on what the server supports. 30 * @return string|false False on failure.30 * @return string|false Compressed string on success, false on failure. 31 31 */ 32 32 public static function compress( $raw, $level = 9, $supports = null ) { … … 46 46 * @param string $compressed String to decompress. 47 47 * @param int $length The optional length of the compressed data. 48 * @return string|false False on failure.48 * @return string|false Decompressed string on success, false on failure. 49 49 */ 50 50 public static function decompress( $compressed, $length = null ) { … … 99 99 * 100 100 * @param string $gzData String to decompress. 101 * @return string|false False on failure.101 * @return string|false Decompressed string on success, false on failure. 102 102 */ 103 103 public static function compatible_gzinflate( $gzData ) {
Note: See TracChangeset
for help on using the changeset viewer.