使用哪锋迅方式如下:
<?php
$zip = new ZipArchive()
$filename = "基银./test112.zip"
if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) {
exit("cannot open <$filename>")
}
$zip->addFromString("testfilephp.txt" . time(), "#1 This is a test string added as testfilephp.txt. ")
$zip->addFromString("testfilephp2.txt" . time(), "#2 This is a test string added as testfilephp2.txt. ")
$zip->addFile($thisdir . "/too.php","/testfromfile.php")
echo "numfiles: " . $zip->numFiles . " "
echo "status:" . $zip->status . "李此 "
$zip->close()
?>
你的服务器是UNIX的吗,如果是UNIX,那么老卜使用下面的简单方法:$tail=`tail -n 100 abc.log`
这样就能获取abc.log文件的最后100行,其它文件或者行数用类似方法。
如果不是UNIX,那么用下面的方州毁法获取文件的最后1024字节内容:
$fp=fopen('abc.log','r')
fseek($fp,-1024,SEEK_END)
$tail=fread($fp,1024)
如果需要册含备不是1024字节内容请自行调整文件中的数字。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)