Qiniu\Http\Client::escapeQuotes PHP Method

escapeQuotes() private static method

private static escapeQuotes ( $str )
    private static function escapeQuotes($str)
    {
        $find = array("\\", "\"");
        $replace = array("\\\\", "\\\"");
        return str_replace($find, $replace, $str);
    }