Home
last modified time | relevance | path

Searched refs:zip (Results 1 – 25 of 258) sorted by last modified time

1234567891011

/PHP-5.5/win32/
H A Dinstall.txt127 download the zip binary distribution from the downloads page at
157 are installing PHP 4, extract to C:\, as the zip file expands to a
159 to C:\php as the zip file doesn't expand as in PHP 4. You may choose a
163 The directory structure extracted from the zip is different for PHP
279 There are two ini files distributed in the zip file, php.ini-development
408 are found in the zip package of the PHP download. In PHP 5, many
610 Windows http://snaps.php.net/win32/php5-win32-latest.zip.
/PHP-5.5/win32/build/
H A DMakefile119 …DEF) $(BUILD_DIR)\php-$(PHP_VERSION_STRING)-Win32.zip $(BUILD_DIR)\pecl-$(PHP_VERSION_STRING)-Win3…
137 …$(PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip
138 …$(PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip
139 …$(PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip
140 -del /f /q $(BUILD_DIR)\php-test-pack-$(PHP_VERSION_STRING).zip
155 …$(PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip
157 …$(PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip
160 …PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip .
163 …PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip .
166 -$(ZIP) -9 -q -r ..\php-test-pack-$(PHP_VERSION_STRING).zip .
[all …]
H A DMakefile.phpize27 …DEF) $(BUILD_DIR)\php-$(PHP_VERSION_STRING)-Win32.zip $(BUILD_DIR)\pecl-$(PHP_VERSION_STRING)-Win3…
H A Dconfig.w3277 PATH_PROG('zip');
H A Dconfig.w32.phpize.in76 PATH_PROG('zip');
/PHP-5.5/travis/
H A Dcompile.sh31 --enable-zip \
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch1205 -zip application/x-zip-compressed
1220 +zip application/zip
/PHP-5.5/ext/zip/tests/
H A Dbug40228.phpt4 <?php if (!extension_loaded("zip")) print "skip"; ?>
8 $arc_name = $dest . "/bug40228.zip";
9 $zip = new ZipArchive;
10 $zip->open($arc_name, ZIPARCHIVE::CREATE);;
11 $zip->extractTo($dest);
H A Dbug47667.phpt6 if(!extension_loaded('zip')) die('skip');
11 $filename = $thisdir . "/bug47667.zip";
13 $zip = new ZipArchive();
15 exit("Unable to open the zip file");
18 $zip->close();
22 $zip = new ZipArchive();
27 $zip->close();
30 $zip = new ZipArchive();
32 exit("Unable to open the zip file");
35 echo "files: " , $zip->numFiles;
[all …]
H A Dbug49072.phpt2 Bug #49072 (feof never returns true for damaged file in zip)
6 if(!extension_loaded('zip')) die('skip');
10 $f = dirname(__FILE__) . '/bug49072.zip';
H A Dbug51353.phpt5 if(!extension_loaded('zip')) die('skip');
17 $zip = new ZipArchive;
18 $r = $zip->open("$base_path/51353.zip", ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE);
21 $zip->addFromString("$i.txt", '1');
23 $zip->close();
28 $zip = new ZipArchive;
29 $r = $zip->open("$base_path/51353.zip");
31 $zip->extractTo("$base_path/51353_unpack");
32 $zip->close();
45 unlink("$base_path/51353.zip");
H A Dbug53579.phpt6 if(!extension_loaded('zip')) die('skip');
11 $file = $dirname . 'test_with_comment.zip';
13 $zip = new ZipArchive;
14 if (!$zip->open($file)) {
17 $fp = $zip->getStream('foo');
24 $zip->close();
28 $fp = fopen('zip://' . dirname(__FILE__) . '/test_with_comment.zip#foo', 'rb');
H A Dbug53603.phpt5 if(!extension_loaded('zip')) die('skip');
21 $file = $dirname . 'test_with_comment.zip';
22 $zip = new ZipArchive;
23 if ($zip->open($file) !== TRUE) {
28 $a = $zip->extractTo('teststream://test');
H A Dbug53885.phpt5 if(!extension_loaded('zip')) die('skip');
9 $fname = dirname(__FILE__)."/test53885.zip";
20 $fname = dirname(__FILE__)."/test53885.zip";
H A Dbug64342_0.phpt5 if(!extension_loaded('zip')) die('skip');
10 $zip = new ZipArchive;
11 $res = $zip->open(dirname(__FILE__) . '/bug64342.zip', ZipArchive::CREATE);
15 $res = $zip->addFile($f);
21 $res = $zip->close();
37 @unlink(dirname(__FILE__) . '/bug64342.zip');
H A Dbug64342_1.phpt6 if(!extension_loaded('zip')) die('skip');
13 $file = $dirname . '__tmp_oo_addfile.zip';
15 copy($dirname . 'test.zip', $file);
17 $zip = new ZipArchive;
18 if (!$zip->open($file)) {
21 if (!$zip->addFile($dirname . 'cant_find_me.txt', 'test.php')) {
24 if ($zip->status == ZIPARCHIVE::ER_OK) {
25 dump_entries_name($zip);
26 $zip->close();
H A Dbug70350.phpt5 if(!extension_loaded('zip')) die('skip');
13 $archive->open("$dir/a.zip",ZipArchive::CREATE);
18 $archive2->open("$dir/a.zip");
28 unlink("$dir/a.zip");
H A Dbug7214.phpt6 if(!extension_loaded('zip')) die('skip');
10 $zip = zip_open(dirname(__FILE__)."/binarynull.zip");
11 if (!is_resource($zip)) die("Failure");
13 $entry = zip_read($zip);
H A Dbug7658.phpt6 if(!extension_loaded('zip')) die('skip');
30 $zip = new ZipArchive();
32 if(!$zip->open($file)) {
37 $zip->deleteName('content.xml');
38 $zip->addFile($dirname . "bug7658.xml","content.xml");
39 $zip->close();
41 $zip->open($file);
43 for($i=0; $i < $zip->numFiles; $i++) {
44 $sb = $zip->statIndex($i);
50 unset($zip);
H A Dbug8009.phpt6 if(!extension_loaded('zip')) die('skip');
11 $src = $thisdir . "/bug8009.zip";
12 $filename = $thisdir . "/tmp8009.zip";
15 $zip = new ZipArchive();
17 if (!$zip->open($filename)) {
20 $zip->addFromString("2.txt", "=)");
21 $zip->close();
23 echo "status: " . $zip->status . "\n";
H A Dbug8700.phpt6 if(!extension_loaded('zip')) die('skip');
11 $filename = $thisdir . "/bug8009.zip";
13 $zip = new ZipArchive();
15 if ($zip->open($filename) === FALSE) {
18 $contents_from_idx = $zip->getFromIndex(0);
19 $contents_from_name = $zip->getFromName('1.txt');
25 $zip->close();
26 echo "status: " . $zip->status . "\n";
H A Doo_addemptydir.phpt6 if(!extension_loaded('zip')) die('skip');
13 $file = $dirname . '__tmp_oo_addfile.zip';
15 copy($dirname . 'test.zip', $file);
17 $zip = new ZipArchive;
18 if (!$zip->open($file)) {
22 $zip->addEmptyDir('emptydir');
23 if ($zip->status == ZIPARCHIVE::ER_OK) {
24 dump_entries_name($zip);
25 $zip->close();
H A Doo_addfile.phpt6 if(!extension_loaded('zip')) die('skip');
13 $file = $dirname . '__tmp_oo_addfile.zip';
15 copy($dirname . 'test.zip', $file);
17 $zip = new ZipArchive;
18 if (!$zip->open($file)) {
21 if (!$zip->addFile($dirname . 'utils.inc', 'test.php')) {
24 if ($zip->status == ZIPARCHIVE::ER_OK) {
25 dump_entries_name($zip);
26 $zip->close();
H A Doo_close.phpt2 zip::close() function
6 if(!extension_loaded('zip')) die('skip');
12 $zip = new ZipArchive;
13 if (!$zip->open($dirname . 'test.zip')) {
17 if ($zip->status == ZIPARCHIVE::ER_OK) {
18 $zip->close();
H A Doo_delete.phpt16 $zip = new ZipArchive;
25 $zip->close();
28 var_dump($zip);
36 if ($zip->deleteIndex(0)) {
52 if (!$zip->deleteIndex(123)) {
55 print_r($zip);
60 $sb = $zip->statIndex(0);
62 $sb = $zip->statIndex(1);
64 $sb = $zip->statIndex(2);
66 $zip->close();
[all …]

Completed in 58 milliseconds

1234567891011