NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
```php if (!function_exists('sql_filter')) { /** * sql 参数过滤 * @param string $str * @return mixed */ function sql_filter(string $str) { $filter = ['select ', 'insert ', 'update ', 'delete ', 'drop', 'truncate ', 'declare', 'xp_cmdshell', '/add', ' or ', 'exec', 'create', 'chr', 'mid', ' and ', 'execute']; $toupper = array_map(function ($str) { return strtoupper($str); }, $filter); return str_replace(array_merge($filter, $toupper, ['%20']), '', $str); } } ```