mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00

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