Zend_Db_Adapter_Pdo_Mssql::_quote PHP Method

_quote() protected method

Quote a raw string.
protected _quote ( string $value ) : string
$value string Raw string
return string Quoted string
    protected function _quote($value)
    {
        if (!is_int($value) && !is_float($value)) {
            // Fix for null-byte injection
            $value = addcslashes($value, "");
        }
        return parent::_quote($value);
    }