1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/zip/tests/bug50678.phpt
2020-05-18 07:53:03 +02:00

32 lines
590 B
PHP

--TEST--
Bug #50678 (files extracted by ZipArchive class lost their original modified time)
--SKIPIF--
<?php
if (!extension_loaded('zip')) die('skip zip extension not available');
?>
--INI--
date.timezone=UTC
--FILE--
<?php
$filename = __DIR__ . '/test.zip';
$dirname = __DIR__ . '/bug50678';
@mkdir($dirname);
$zip = new ZipArchive();
$zip->open($filename);
$zip->extractTo($dirname);
$zip->close();
var_dump(date('Ym', filemtime($dirname . '/entry1.txt')));
?>
Done
--EXPECT--
string(6) "200607"
Done
--CLEAN--
<?php
include __DIR__ . '/utils.inc';
rmdir_rf(__DIR__ . '/bug50678');
?>