用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php防止sql注入之过滤分页参数

时间:2015-01-23  来源:西部数据  作者:西部数据

我们会听过这一种句话,在网络上不要相信任何输入信息,我们都必须进行参数过滤,下面我就来介绍过滤分页参数吧,有需要的朋友可参考,实例代码如下:

  1. $this->load->library ( 'pagination' ); 
  2. $config ['base_url'] = site_url () . '/guest/show'
  3. $config ['total_rows'] = $c
  4. $config ['per_page'] = $pernum = 15; 
  5. $config ['uri_segment'] = 3; 
  6. $config ['use_page_numbers'] = TRUE; 
  7. $config ['first_link'] = '第一页'
  8. $config ['last_link'] = '最后一页'
  9. $config ['num_links'] = 5; 
  10. $this->pagination->initialize ( $config ); 
  11. if (! $this->uri->segment ( 3 )) { 
  12.     $currentnum = 0; 
  13. else { 
  14.     $currentnum = is_numeric($this->uri->segment ( 3 ))?(intval($this->uri->segment ( 3 ) - 1)) * $pernum:0; 
  15.  
  16. $current_page=is_numeric($this->uri->segment ( 3 ))?intval($this->uri->segment ( 3 )):1; 
  17. if($current_page){ 
  18.     $data ['title'] = '第'.$current_page.'页-留言本-大冶实验高中首届宏志班网站'
  19. }//开源代码phpfensi.com 
  20. else
  21.     $data ['title'] = '留言本-大冶实验高中首届宏志班网站'
  22.  
  23. $data ['liuyan'] = $this->ly->getLy ( $pernum$currentnum ); 

其中有两句代码如下:

  1. $current_page=is_numeric($this->uri->segment ( 3 ))?intval($this->uri->segment ( 3 )):1; 
  2. $currentnum = is_numeric($this->uri->segment ( 3 ))?(intval($this->uri->segment ( 3 ) - 1)) * $pernum

这两句判断了参数是否为数字,防止非法字符输入.

来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门