Home > php教程 > php手册 > body text

Codeigniter校验ip地址的方法,codeigniter校验ip

WBOY
Release: 2016-06-13 09:10:48
Original
882 people have browsed it

Codeigniter校验ip地址的方法,codeigniter校验ip

本文实例讲述了Codeigniter校验ip地址的方法。分享给大家供大家参考。具体分析如下:

这里演示了Codeigniter如何获取用户ip地址,同时校验ip地址的有效性

获取用户ip:

$this->input->ip_address();
//如果ip获取失败,则返回 0.0.0.0,我们也可以使用下面的代码校验ip的有效性
$ip = "192.168.1.1";
if (!$this->input->valid_ip($ip))
{
 echo " Not a valid IP address" ;
}
else
{
 echo " Valid IP address! " ;
}
Copy after login

希望本文所述对大家基于Codeigniter的php程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!