脚本取自http://css-tricks.com/snippets/php/get-geo-ip-information/
.
.
.
//Array where results will be stored
$ipInfo=array();
//check response from ipserver for above patterns
foreach ($patterns as $key => $pattern)
{
//store the result in array
$ipInfo[$key] = preg_match($pattern,$response,$value) && !empty($value[1]) ? $value[1] : 'not found';
}
return $ipInfo;
}
这将显示$ipInfo。
问题是我不希望它显示$ipInfo。我想将输出保存在一个变量中,然后当我在另一个地方需要它时回显它。我怎样才能做到这一点?