求高手写这样一段PHP的
『回复列表(27|隐藏机器人聊天)』
<?php
$job=file_get_contents('url/go.php');
for($i=1; $i<6; $i++){
if($job){
echo '访问'.$i.'次了!<br>';
}
}
?>
go.php
<?php
$cs=@file_get_contents('cs.txt')+1;
file_put_contents('cs.txt',$cs);
echo '该文件被访问了'.$cs.'次';
?>