コメントありがとうございます。 サービス終了した今なら、安く中古が手に入りそ…
PHP8でZipArchiveを使おうとすると”Using empty file as ZipArchive is deprecated”と怒られる
怒られるパターン
$tmpfile = tempnam(sys_get_temp_dir(), 'Zip'); $zip = new ZipArchive; $zip->open($tmpfile, ZipArchive::CREATE);
Deprecated: ZipArchive::open(): Using empty file as ZipArchive is deprecated in <
CREATEの部分をOVERWRITEにする事で解決
$tmpfile = tempnam(sys_get_temp_dir(), 'Zip'); $zip = new ZipArchive; $zip->open($tmpfile, ZipArchive::OVERWRITE);
検索
コメントを残す