怎么用php向服务器已存在的zip文件中增加一个文件

怎么用php向服务器已存在的zip文件中增加一个文件,第1张

加一个zip模块进去

使用哪锋迅方式如下:

<?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字节内容请自行调整文件中的数字。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/8168490.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-14
下一篇 2023-04-14

发表评论

登录后才能评论

评论列表(0条)

保存