php function to convert %3c back to html
I have a string that needs to be converted back to html. It's in this format:
%3cli%3e
which should be:
<li>
What php function can I use to convert 开发者_StackOverflow中文版this? Tried html_entity_decode() but that didn't work.
urldecode()
Did you try urldecode
?
精彩评论