将字符串解码为可读格式 PHP
Decode string into Readable format PHP
使用PHP
将以下字符串解码为人类可读的正确字符串
=?UTF-8?Q?=F0=9F=8E=81Congratulation_Dear,You_are=5FSelected_for=5FOnline?= =?UTF-8?Q?=F0=9F=8E=81cash=5Floan_upto=F0=9F=8E=8110,000/-?=
使用PHP函数imap_mime_header_decode()
对其进行解码。
对于问题中张贴的字符串 returns 这个:
Array
(
[0] => stdClass Object
(
[charset] => UTF-8
[text] => Congratulation Dear,You are_Selected for_Online
)
[1] => stdClass Object
(
[charset] => UTF-8
[text] => cash_loan upto10,000/-
)
)
不可打印字符 (U+1F381
) 根据 unicode.org, a "wrapped present". It could look like this 表示是否使用包含它的字体显示。
使用PHP
将以下字符串解码为人类可读的正确字符串=?UTF-8?Q?=F0=9F=8E=81Congratulation_Dear,You_are=5FSelected_for=5FOnline?= =?UTF-8?Q?=F0=9F=8E=81cash=5Floan_upto=F0=9F=8E=8110,000/-?=
使用PHP函数imap_mime_header_decode()
对其进行解码。
对于问题中张贴的字符串 returns 这个:
Array
(
[0] => stdClass Object
(
[charset] => UTF-8
[text] => Congratulation Dear,You are_Selected for_Online
)
[1] => stdClass Object
(
[charset] => UTF-8
[text] => cash_loan upto10,000/-
)
)
不可打印字符 (U+1F381
) 根据 unicode.org, a "wrapped present". It could look like this 表示是否使用包含它的字体显示。