风故故,也依依

Stand still in the wind.

导航

php去掉字符串前后的引号

function remove_quote(&$str) {
        if (preg_match("/^\"/",$str)){
            $str = substr($str, 1, strlen($str) - 1);
        }
        //判断字符串是否以'"'结束
        if (preg_match("/\"$/",$str)){
            $str = substr($str, 0, strlen($str) - 1);;
        }
        return $str;
  }

posted on 2011-08-22 19:36  jadmin  阅读(4251)  评论(0编辑  收藏  举报