我有这个写了一半的脚本,它根本不起作用
<?php
function hit_count() {
echo $ip_address = $_SERVER['REMOTE_ADDR'];
$ip_file = file('ip.txt');
foreach ($ip_file as $ip) {
$ip_single = trim($ip);
if ($ip_address==$ip_single) {
$found = false;
} else {
$found = true;
}
}
if ($found==false) {
echo 'IP not found.';
}
}
?>
即使第一行也不会显示任何内容。但是你瞧,如果我把它包含在这个文件中
<?php
include 'unique-counter.php';
hit_count();
?>
“回声”显示我的IP。
这是怎么发生的?