mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
17 lines
238 B
PHP
17 lines
238 B
PHP
--TEST--
|
|
zip_open() function
|
|
--SKIPIF--
|
|
<?php
|
|
/* $Id$ */
|
|
if(!extension_loaded('zip')) die('skip');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$zip = zip_open(dirname(__FILE__)."/test_procedural.zip");
|
|
|
|
echo is_resource($zip) ? "OK" : "Failure";
|
|
|
|
?>
|
|
--EXPECT--
|
|
OK
|