Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 PHP 将输入字符串转换为 UTF-8。我知道mbstring()并且iconv()可以做到,但我的问题是当字符串的编码不受mbstring(). 例如 Windows-1256 编码!
mbstring()
iconv()
我找到了解决此问题的方法,因为我知道该编码的二进制表示,但我的问题是如何获取给定非 ASCII 字符串的字节表示?
您可以使用bin2hexfunction获取字符串的十六进制转储。
bin2hex
这个答案也可能会有所帮助。