gabrielrcouto / php-gui

Extensionless PHP Graphic User Interface library
2.24k stars 175 forks source link

String Conversion in JSON #178

Closed Gold-Samiar closed 4 years ago

Gold-Samiar commented 4 years ago

If you pass like "C:\Users\Music\6d4d6e0d-62b5-4d11-b55e-72ff65993492.m4a" string in double quotes then json_encode convert hexadecimal portion after back slash, so result is C:\Users\Music\u0006d4d6e0d-62b5-4d11-b55e-72ff65993492.m4a . use single quotation or double slash working fine. This is because PHP behaviour so this may be fix on future PHP version but this is very critical to convert string automatically.

Gold-Samiar commented 4 years ago

This is PHP issue, so i am closing it.