Home  >  Article  >  php教程  >  自定义url变量转义方法

自定义url变量转义方法

PHP中文网
PHP中文网Original
2016-05-23 17:09:461522browse

自定义url变量转义方法

thinkphp等系统专用,url传递的参数不能带有/等特殊字符

function base_encode($str) {

    $src  = array("/","+","=","?","&");

    $dist = array("_.a._","_.b._","_.c._","_.d._","_.e._");



    $new  = str_replace($src,$dist,$str);

    return $new;

}

function base_decode($str) {

        $src = array("_.a._","_.b._","_.c._","_.d._","_.e._");

        $dist  = array("/","+","=","?","&");

        $new  = str_replace($src,$dist,$str);

        return $new;

}

                   

 以上就是自定义url变量转义方法的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn