Escaping ampersand in URL

前端 未结 8 1309
余生分开走
余生分开走 2020-11-22 03:25

I am trying to send a GET message that contains strings with ampersands and can\'t figure how to escape the ampersand in the URL.

Example:

http://www         


        
8条回答
  •  被撕碎了的回忆
    2020-11-22 03:42

    This may help if someone want it in PHP

    $variable ="candy_name=M&M";
    $variable = str_replace("&", "%26", $variable);
    

提交回复
热议问题