网页同步?(这点简单代码大概就这意思)
时间:2006-10-17 来源:liuxingyuyuni
网页间内容不多,需要同步,反正这个我够用!~
这个页面要间隔刷新
exit;
}
else
{
if(is_writable('http://localhost/a.html'))
{
if(!$handle = @fopen('http://localhost/a.html','w'))
{
echo '不能打开文件.';
exit;
}
if(fwrite($handle, $buffer2) === FALSE)
{
echo '不能写入文件.';
exit;
}
echo '成功写入!';
fclose($handle);
}
else
{
echo '文件不可写';
exit;
}
}
?>
这个页面要间隔刷新
exit;
}
else
{
if(is_writable('http://localhost/a.html'))
{
if(!$handle = @fopen('http://localhost/a.html','w'))
{
echo '不能打开文件.';
exit;
}
if(fwrite($handle, $buffer2) === FALSE)
{
echo '不能写入文件.';
exit;
}
echo '成功写入!';
fclose($handle);
}
else
{
echo '文件不可写';
exit;
}
}
?>
相关阅读 更多 +