Last active
May 19, 2022 11:05
-
-
Save cp-sumi-k/c21e1658b659c70ce4ff5eb570ab2dcc to your computer and use it in GitHub Desktop.
https://blog.canopas.com/php-useful-encoding-and-decoding-functions-you-need-to-know-210e523a065f - utf8_decode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$text = "\xE0"; | |
echo utf8_decode($text); | |
# output : ? | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment