我在7.0.33Linux 服务器(共享网络托管)上运行 PHP。
有了date_default_timezone_set('Europe/Rome');我可以正确设置我的时区。
echo date('Y-m-d H:i:s'); 显示正确的日期时间。
但是添加在其中的文件.zip获取ZipArchive服务器日期时间。
文件的源是动态创建的。
这是我用来压缩文件的代码:
$zip = new ZipArchive;
$zip->open($pathZip, ZipArchive::CREATE);
foreach($fileList as $fileName => $fileContents)
{
$zip->addFromString($fileName, $fileContents);
}
$zip->close();
// Note: I removed all try-catch and false returns checks to simplify the code
如何在.zip维护设置的时区中添加文件date_default_timezone_set,可能使用ZipArchive?
我已经阅读了这篇文章,但它已经很老了。
繁星点点滴滴
守着一只汪
富国沪深