Home >php教程 >php手册 >简单计数器的php源代码

简单计数器的php源代码

WBOY
WBOYOriginal
2016-06-13 10:24:241107browse


$memo_file="phpcount/vst.txt";
if ($phpxcount$REMOTE_ADDR){
$visits = file($memo_file);
$number_of_last_visit = $visits[0];
$number_of_new_visit = ++$number_of_last_visit;
$fp = fopen($memo_file, "w");
$fw = fwrite($fp, $number_of_new_visit);
fclose($fp);

$len_str = strlen($number_of_new_visit);
for($i=(0);$i$numbers_exploded = substr($number_of_new_visit,$i,1);
$output_str = $output_str . "";
}
}else{
$visits = file($memo_file);
$number_of_last_visit = $visits[0];
$number_of_new_visit = $number_of_last_visit;
$fp = fopen($memo_file, "w");
$fw = fwrite($fp, $number_of_new_visit);
fclose($fp);

$len_str = strlen($number_of_new_visit);
for($i=(0);$i$numbers_exploded = substr($number_of_new_visit,$i,1);


$output_str = $output_str . "";
}
}
echo $output_str;
?>
Statement:
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