0

我有这个写了一半的脚本,它根本不起作用

<?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。

这是怎么发生的?

4

1 回答 1

6

您的脚本本身只定义了一个函数,它不会调用它。

添加hit_count();到独立脚本。

于 2013-04-02T19:40:07.320 回答