Changeset 52473 for branches/5.0/src/wp-includes/formatting.php
- Timestamp:
- 01/06/2022 06:13:41 PM (3 years ago)
- Location:
- branches/5.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/5.0/src/wp-includes/formatting.php
r49396 r52473 1085 1085 * 1086 1086 * @since 1.5.0 1087 * 1088 * @param string $utf8_string 1089 * @param int $length Max length of the string 1087 * @since 5.8.3 Added the `encode_ascii_characters` parameter. 1088 * 1089 * @param string $utf8_string String to encode. 1090 * @param int $length Max length of the string 1091 * @param bool $encode_ascii_characters Whether to encode ascii characters such as < " ' 1090 1092 * @return string String with Unicode encoded for URI. 1091 1093 */ 1092 function utf8_uri_encode( $utf8_string, $length = 0 ) {1094 function utf8_uri_encode( $utf8_string, $length = 0, $encode_ascii_characters = false ) { 1093 1095 $unicode = ''; 1094 1096 $values = array(); … … 1105 1107 1106 1108 if ( $value < 128 ) { 1107 if ( $length && ( $unicode_length >= $length ) ) { 1109 $char = chr( $value ); 1110 $encoded_char = $encode_ascii_characters ? rawurlencode( $char ) : $char; 1111 $encoded_char_length = strlen( $encoded_char ); 1112 if ( $length && ( $unicode_length + $encoded_char_length ) > $length ) { 1108 1113 break; 1109 1114 } 1110 $unicode .= chr( $value );1111 $unicode_length ++;1115 $unicode .= $encoded_char; 1116 $unicode_length += $encoded_char_length; 1112 1117 } else { 1113 1118 if ( count( $values ) == 0 ) {
Note: See TracChangeset
for help on using the changeset viewer.