php/doc-en
JSON_UNESCAPED_UNICODE option in json_encode does not unescape some control characters
Ouverte
#2 999 ouverte le 5 déc. 2023
Extension: jsongood first issue
Métriques du dépôt
- Stars
- (596 étoiles)
- Métriques de merge PR
- (Métriques PR en attente)
Description
Description
The following code:
<?php
var_dump(json_encode("\x00 \x01 \x02 \x03 \x04 \x05 \x06 \x07 \x08 \x09 \x10 \x11 \x12 \x13 \x14 \x15 \x16 \x17 \x18 \x19", JSON_UNESCAPED_UNICODE));
Resulted in this output:
string(133) ""\u0000 \u0001 \u0002 \u0003 \u0004 \u0005 \u0006 \u0007 \b \t \u0010 \u0011 \u0012 \u0013 \u0014 \u0015 \u0016 \u0017 \u0018 \u0019""
But I don't expect to see Unicode escape sequences
PHP Version
PHP 8.3.0
Operating System
No response