Changeset 62484
- Timestamp:
- 06/10/2026 11:37:00 PM (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/deprecatedUtfEncodeDecode.php
r60950 r62484 69 69 * these have to be manually constructed as invalid UTF-8. 70 70 */ 71 $byte1 = 0xE0 | ( $i >> 12);72 $byte2 = 0x80 | ( ( $i >> 6 ) & 0x3F);73 $byte3 = 0x80 | ( $i & 0x3F);71 $byte1 = chr( 0xE0 | ( $i >> 12 ) ); 72 $byte2 = chr( 0x80 | ( ( $i >> 6 ) & 0x3F ) ); 73 $byte3 = chr( 0x80 | ( $i & 0x3F ) ); 74 74 75 75 $c = "{$byte1}{$byte2}{$byte3}";
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)