Home  >  Article  >  php教程  >  一个简单计数器的源代码

一个简单计数器的源代码

WBOY
WBOYOriginal
2016-06-13 12:38:26895browse


$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