BaiduUtils::shouldRetainParam PHP Method

shouldRetainParam() private static method

private static shouldRetainParam ( $param )
    private static function shouldRetainParam($param)
    {
        foreach (self::$DROP_QUERY_PARAMS as $drop_query_param) {
            if (strpos($param, $drop_query_param . '=') === 0) {
                return false;
            }
        }
        return true;
    }