mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
14 lines
238 B
PHP
14 lines
238 B
PHP
--TEST--
|
|
zip_open() function
|
|
--EXTENSIONS--
|
|
zip
|
|
--FILE--
|
|
<?php
|
|
$zip = zip_open(__DIR__."/test_procedural.zip");
|
|
|
|
echo is_resource($zip) ? "OK" : "Failure";
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function zip_open() is deprecated in %s on line %d
|
|
OK
|