1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 04:02:19 +02:00
Files
archived-php-src/ext/zip/tests/zip_open.phpt
2019-03-15 22:55:30 +01:00

16 lines
217 B
PHP

--TEST--
zip_open() function
--SKIPIF--
<?php
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
<?php
$zip = zip_open(__DIR__."/test_procedural.zip");
echo is_resource($zip) ? "OK" : "Failure";
?>
--EXPECT--
OK