最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to encode URL in JS and Decode in PHP? - Stack Overflow

programmeradmin0浏览0评论

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']

Share Improve this question edited Nov 25, 2015 at 20:39 webaholik 1,8151 gold badge23 silver badges34 bronze badges asked Apr 2, 2015 at 6:30 Ahmed SyedAhmed Syed 1,1892 gold badges18 silver badges47 bronze badges 2
  • 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
Add a ment  | 

2 Answers 2

Reset to default 4

You 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.

发布评论

评论列表(0)

  1. 暂无评论