mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
17 lines
238 B
Plaintext
17 lines
238 B
Plaintext
|
--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
|