首页> 实战笔录 >PHP开发笔记 >PHP PHP
php自定义函数过滤数字防SQL注入
作者:小萝卜 2019-03-27 【 PHP 自定义函数 】 浏览 2469
简介php自定义函数过滤,数字防SQL注入,整型注入,Int类型注入
php自定义函数过滤数字防SQL注入
代码如下:
代码如下:
//防整型注入 function get_int($str){ $str=floor(floatval($str)); if (!is_numeric($str)){ header("location:".$_SERVER['HTTP_REFERER'].""); exit; } return $str; } var_dump(get_int($_GET['id']));
很赞哦! (0)
下一篇:php自定义函数获取项目目录
相关文章
- php中__construct()和__initialize()的区别
- Windows系统下安装php ssh2扩展
- PHP网页调用迅雷下载文件
- php正则判断是否同时有数字和字母
- Apache怎么设置去掉网站的index.php后缀
- Namespace declaration statement has to be the very first statement or after any declare call in the
- PHP分别替换内容中的img标签src的值
- PHP常用数学函数分享
- php利用正则表达式提取内容中的所有图片(Img)或第一张图片(Img)
- windows环境PHP 如何安装ionCube扩展