请阅读
例如,我的PHP项目有一个链接列表,每个链接如:
“https://s.1688.com/selloffer/offer_search.htm?keywords=%C5%AE%CA%BF%CB%AF%D2%C2”
用于搜索关键字:"女士睡衣"
,
然后,我删除了"%C5%AE"
,我的新结果是"士睡衣"
。这意味着"女" = "%C5%AE"
所以我有一个问题:“我怎样才能像这样加密中文关键字?”
我期待着你的帮助! 谢谢!
答案 0 :(得分:1)
代码php编码url搜索1688
$key = "女士钱包";
$str = mb_convert_encoding($key, "EUC-CN", "auto");
header("Location: https://s.1688.com/selloffer/offer_search.htm?keywords=$str");