mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
16 lines
415 B
PHP
16 lines
415 B
PHP
--TEST--
|
|
Valid Unicode escape sequences: Surrogate halves
|
|
--FILE--
|
|
<?php
|
|
|
|
// Surrogate pairs are non-well-formed UTF-8 - however, it is sometimes useful
|
|
// to be able to produce these (e.g. CESU-8 handling)
|
|
|
|
var_dump(bin2hex("\u{D801}"));
|
|
var_dump(bin2hex("\u{DC00}"));
|
|
var_dump(bin2hex("\u{D801}\u{DC00}")); // CESU-8 encoding of U+10400
|
|
|
|
--EXPECT--
|
|
string(6) "eda081"
|
|
string(6) "edb080"
|
|
string(12) "eda081edb080"
|