© 本文档使用 php.cn手册 发布
URLEncode 方法把 URL 编码规则应用到指定的字符串。
1
<div> Server.URLEncode(string) </div>
<div> <%<br> response.write(Server.URLEncode("http://www.shouce.ren"))<br> %><br><br> 输出:<br><br> http%3A%2F%2Fwww%2Eshouce.ren%2Ecom </div>
<div> <%<br> response.write(Server.URLEncode(
"http://www.shouce.ren"
))<br> %><br><br> 输出:<br><br> http%3A%2F%2Fwww%2Eshouce.ren%2Ecom </div>