squid代理因为特殊符号导致密码错误怎么处理
其实这个说法不准确,其实设置的代理也是一个url, url是由字符限制的,所以使用 urlencode 编码一下就可以了。
示例
<?php
echo urlencode("sfsdf2#$@4");
# sfsdf2%23%24%404
# http://wpcode:sfsdf2%23%24%404@wpcode.cn:xxxx
一个交流学习wordpress的网站
其实这个说法不准确,其实设置的代理也是一个url, url是由字符限制的,所以使用 urlencode 编码一下就可以了。
<?php
echo urlencode("sfsdf2#$@4");
# sfsdf2%23%24%404
# http://wpcode:sfsdf2%23%24%404@wpcode.cn:xxxx