PHP 显示本机的外网IP
由于公司的外网IP经常的变化,有时需要知道自己的外网IP,所以写了下面的小东西
<?
while(true)
{
$ch = curl_init('http://www.ip138.com/ip2city.asp');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$a = curl_exec($ch);
preg_match('/\[(.*)\]/', $a, $ip);
echo '您现在的IP是: ' , $ip[1] , "\n";
}
?>
while(true)
{
$ch = curl_init('http://www.ip138.com/ip2city.asp');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$a = curl_exec($ch);
preg_match('/\[(.*)\]/', $a, $ip);
echo '您现在的IP是: ' , $ip[1] , "\n";
}
?>
原理很简单,就不解释了唯一值得提一下的是最后的输出语句,其实如果使用echo的话,可以不必使用 ‘.’ 把每个字符连接起来,只要用 ',' 来依次输出就可以了。