admin管理员组文章数量:1344555
Following is my JS code:
window.location.href = 'products.php?price_range=-INFto2000,2001to5000';
My question is how do I encode the URL in javascript & decode it in PHP, such that my browser's navigation bar will show
"products.php?price_range=-INFto2000%2C2001to5000"
instead of
"products.php?price_range=-INFto2000,2001to5000"
and my php code will be able to work with the proper value of -INFto2000,2001to5000
in $_GET['price_range']
Following is my JS code:
window.location.href = 'products.php?price_range=-INFto2000,2001to5000';
My question is how do I encode the URL in javascript & decode it in PHP, such that my browser's navigation bar will show
"products.php?price_range=-INFto2000%2C2001to5000"
instead of
"products.php?price_range=-INFto2000,2001to5000"
and my php code will be able to work with the proper value of -INFto2000,2001to5000
in $_GET['price_range']
- Why should your browser show "products.php%3Fprice_range%3D-INFto2000%2C2001to5000"?! – deceze ♦ Commented Apr 2, 2015 at 6:44
- @deceze For security purpose. :-) – Ahmed Syed Commented Apr 2, 2015 at 7:02
2 Answers
Reset to default 4You can use encodeURI()
This function encodes special characters, except: , / ? : @ & = + $ #
To : , / ? : @ & = + $ #
use encodeURIComponent()
Best way to encode all characters is to run both functions
var url = 'products.php?price_range=-INFto2000,2001to5000';
url = encodeURI(url);// Encode special characters
url = encodeURIComponent(url);//Encodes : , / ? : @ & = + $ # characters
By default php automatically decode
Encoded URLs so you don't have to do anything. You can simply access URL parameters like this
$_REQUEST['price_range'];
For some reasons if you have to decode URL Client side you can use decodeURI()
& decodeURIComponent()
Try this in your javascript code
window.location.href = 'products.php?price_range='+encodeURIComponent('-INFto2000,2001to5000');
You can access the decoded value in $_GET['price_range']. $_GET variables are decoded by default in PHP.
本文标签: javascriptHow to encode URL in JS and Decode in PHPStack Overflow
版权声明:本文标题:javascript - How to encode URL in JS and Decode in PHP? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743764631a2535011.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论