Changeset 61036 for trunk/src/wp-includes/compat-utf8.php
- Timestamp:
- 10/21/2025 02:00:33 PM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/compat-utf8.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/compat-utf8.php
r61005 r61036 536 536 537 537 // All convertible code points are not greater than U+FF. 538 $byte2 = ord( $utf8_text[ $at + 1 ] );538 $byte2 = ord( $utf8_text[ $at + 1 ] ); 539 539 $code_point = ( ( $byte1 & 0x1F ) << 6 ) | ( ( $byte2 & 0x3F ) ); 540 540 if ( $code_point > 0xFF ) {
Note: See TracChangeset
for help on using the changeset viewer.