无法解码网址链接"健康%20&%20Beaut"到"健康&美容"

时间:2016-04-14 08:03:13

标签: laravel decode

我还是尝试解码 http://mywebsite/product/get_product?lv1=Health%20&%20Beaut 我使用html_entity_decode(Health%20&%20Beaut)

我想得到"健康&美容" 但这就搞定了 谁能帮我?感谢

2 个答案:

答案 0 :(得分:0)

您是否尝试使用php的urldecode ...

PHP:

$x = "Health%20&%20Beaut";
echo urldecode($x);

输出:

Health & Beaut  

请参阅http://sandbox.onlinephpfunctions.com/code/4b0ba927391a55b2bf0d9716998f35853e26e7b4

答案 1 :(得分:-1)

使用javascript全局函数decodeURIComponent(uri)