mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00

$Id attributes were used with SVN. With Git most of the Git ident attributes in source code files are not used anymore.
17 lines
319 B
PHP
17 lines
319 B
PHP
--TEST--
|
|
zip_entry_open() function
|
|
--SKIPIF--
|
|
<?php
|
|
if(!extension_loaded('zip')) die('skip');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$zip = zip_open(dirname(__FILE__)."/test_procedural.zip");
|
|
$entry = zip_read($zip);
|
|
echo zip_entry_open($zip, $entry, "r") ? "OK" : "Failure";
|
|
zip_entry_close($entry);
|
|
zip_close($zip);
|
|
|
|
?>
|
|
--EXPECT--
|
|
OK
|