【采集】php str_replace
<?php function my_str_replace($xmlHttp,$order='asc'){ if($order=='asc'){ return str_replace(array('||','|','#','@'),array('//','/','&','='),$xmlHttp); }else{ return str_replace(array('//','/','$','='),array('||','/','#','@'),$xmlHttp); } } echo my_str_replace('http:||www.baidu.com|?a@b#c@d'); //http://www.baidu.com/?a=b&c=d