Remove encoding using PHP

前端 未结 3 2075
星月不相逢
星月不相逢 2021-02-13 18:02

I have the following text:

We%27re%20proud%20to%20introduce%20the%20Amazing

I\'d like to remove the encoding using PHP, but using html_en

3条回答
  •  梦毁少年i
    2021-02-13 18:58

    echo urldecode('We%27re%20proud%20to%20introduce%20the%20Amazing');
    

    This is an url_ecoded string. Use urldecode

提交回复
热议问题