PHP SQL Server注入

时间:2014-10-07 19:29:00

标签: php sql-server escaping

如果您想使用ODBC,这是否可以阻止(全部)Microsoft SQL Server注入?

public function mssql_escape($str)
{
    if (get_magic_quotes_gpc()):
        $str = stripslashes($str);
    endif;

    return str_replace("'", "''", $str);
}

0 个答案:

没有答案