/PHP-5.5/ext/zip/tests/ |
H A D | bug11216.phpt | 10 $archive = new ZipArchive(); 11 $archive->open('__test.zip', ZIPARCHIVE::CREATE); 12 var_dump($archive->addEmptyDir('test')); 13 print_r($archive); 14 var_dump($archive->addEmptyDir('test')); 15 $archive->close();
|
H A D | bug70350.phpt | 12 $archive = new ZipArchive(); 13 $archive->open("$dir/a.zip",ZipArchive::CREATE); 14 $archive->addEmptyDir("../down2/"); 15 $archive->close();
|
H A D | oo_setcomment.phpt | 31 var_dump($zip->setArchiveComment('archive')); 35 var_dump($zip->setArchiveComment('archive')); 71 string(7) "archive"
|
/PHP-5.5/ext/phar/ |
H A D | phar_object.c | 1166 if (phar_obj->arc.archive) { in PHP_METHOD() 1389 if (!phar_obj->arc.archive) { \ 1402 if (phar_obj->arc.archive && phar_obj->arc.archive->is_persistent) { in PHP_METHOD() 1967 RETURN_BOOL(!phar_obj->arc.archive->is_tar && !phar_obj->arc.archive->is_zip); in PHP_METHOD() 2676 if (phar_obj->arc.archive->alias && phar_obj->arc.archive->alias != phar_obj->arc.archive->fname) { in PHP_METHOD() 2677 RETURN_STRINGL(phar_obj->arc.archive->alias, phar_obj->arc.archive->alias_len, 1); in PHP_METHOD() 2693 RETURN_STRINGL(phar_obj->arc.archive->fname, phar_obj->arc.archive->fname_len, 1); in PHP_METHOD() 2988 if (!phar_obj->arc.archive->is_tar && !phar_obj->arc.archive->is_zip) { in PHP_METHOD() 3914 if (phar_obj->arc.archive->is_tar || phar_obj->arc.archive->is_zip) { in PHP_METHOD() 3955 if (phar_obj->arc.archive->fp && !phar_obj->arc.archive->is_brandnew) { in PHP_METHOD() [all …]
|
H A D | TODO | 28 X Phar archive metadata Phar::setMetaData($metadata) Phar::getMetaData() 38 all access to that phar archive are directed to the extracted directory. 39 This allows to have the installed files and the archive keep the same 67 access, or a string representing a file within the archive to access. If 110 phar:///path/to/archive.phar/internal.phar/file opens internal.phar and 111 maps its manifest inside archive.phar. The manifest entry inside 112 archive.phar would be named "internal.phar/file". Write access to internal 113 files inside an internal phar would be denied, as the entire archive must
|
/PHP-5.5/ext/phar/tests/ |
H A D | phar_convert_again.phpt | 183 A Phar stub cannot be set in a plain zip archive 184 A Phar stub cannot be set in a plain zip archive 185 A Phar alias cannot be set in a plain zip archive 190 Cannot compress entire archive with gzip, zip archives do not support whole-archive compression 191 Cannot compress entire archive with bz2, zip archives do not support whole-archive compression 192 Cannot write out data phar archive, use Phar::TAR or Phar::ZIP 195 Cannot compress entire archive with gzip, zip archives do not support whole-archive compression 196 Cannot compress entire archive with bz2, zip archives do not support whole-archive compression 199 A Phar stub cannot be set in a plain tar archive 200 A Phar alias cannot be set in a plain tar archive [all …]
|
H A D | test_alias_unset.phpt | 2 Phar: test for the odd case where we intend to remove an archive from memory 41 Cannot open archive "%stest_alias_unset.2.phar.php", alias is already in use by existing archive 44 …failed to open stream: Cannot open archive "%stest_alias_unset.phar.php", alias is already in use …
|
H A D | alias_acrobatics.phpt | 42 alias "foo" is already used for archive "%salias_acrobatics.phar" cannot be overloaded with "%salia… 44 Cannot open archive "%salias_acrobatics.2.phar", alias is already in use by existing archive 45 alias "another" is already used for archive "%salias_acrobatics.phar" cannot be overloaded with "%s…
|
H A D | phar_unlinkarchive.phpt | 89 Unknown phar archive "" 90 Unknown phar archive "%sphar_unlinkarchive.phar" 91 Unknown phar archive "%sphar_unlinkarchive.phar.tar": internal corruption of phar "%sphar_unlinkarc… 96 phar archive "%sphar_unlinkarchive.phar" has open file handles or objects. fclose() all file handl… 98 string(60) "<?php // zip-based phar archive stub file 101 string(60) "<?php // zip-based phar archive stub file 105 phar archive "%sphar_unlinkarchive.phar" cannot be unlinked from within itself
|
H A D | phar_construct_invalidurl.phpt | 27 Cannot create a phar archive from a URL like "http://should.fail.com". Phar objects can only be cre… 28 Cannot create a phar archive from a URL like "http://". Phar objects can only be created from local…
|
H A D | mkdir.phpt | 35 Warning: mkdir(): phar error: cannot create directory "phar://", no phar archive specified in %smkd… 41 …(): phar error: cannot remove directory "phar://", no phar archive specified, or phar archive does…
|
H A D | phar_convert_repeated.phpt | 112 string(60) "<?php // tar-based phar archive stub file 119 string(60) "<?php // zip-based phar archive stub file 132 string(60) "<?php // zip-based phar archive stub file 139 string(60) "<?php // tar-based phar archive stub file 146 string(60) "<?php // zip-based phar archive stub file
|
H A D | phar_setalias2.phpt | 49 alias "test" is already used for archive "%sphar_setalias2.phar.php" and cannot be used for other a… 50 alias "test" is already used for archive "%sphar_setalias2.phar.php" cannot be overloaded with "%sn…
|
H A D | phar_convert_tar.phpt | 52 string(60) "<?php // tar-based phar archive stub file 55 string(60) "<?php // tar-based phar archive stub file
|
H A D | pharfileinfo_construct.phpt | 51 Cannot access phar file entry '/oops/I/do/not/exist' in archive '%spharfileinfo_construct.phar' 53 '%spharfileinfo_construct.php' is not a valid phar archive URL (must have at least phar://filename.…
|
H A D | phar_convert_zip.phpt | 51 string(60) "<?php // zip-based phar archive stub file 54 string(60) "<?php // zip-based phar archive stub file
|
H A D | pharfileinfo_setmetadata.phpt | 47 Phar entry is a temporary directory (not an actual entry in the archive), cannot set metadata 48 Phar entry is a temporary directory (not an actual entry in the archive), cannot delete metadata
|
/PHP-5.5/ext/phar/tests/zip/files/ |
H A D | zipmaker.php.inc | 6 * Path to archive file 10 protected $archive; 47 'Cannot open ZIP archive ' . $this->path
|
/PHP-5.5/ext/phar/tests/zip/ |
H A D | corrupt_001.phpt | 21 phar error: corrupt zip archive, conflicting file count in end of central directory record in zip-b… 22 phar error: corrupt zip archive, conflicting file count in end of central directory record in zip-b…
|
H A D | notphar.phpt | 23 …ream: '%snotphar.phar.zip' is not a phar archive. Use PharData::__construct() for a standard zip o…
|
H A D | phar_setdefaultstub.phpt | 66 string(60) "<?php // zip-based phar archive stub file 72 string(60) "<?php // zip-based phar archive stub file 78 string(60) "<?php // zip-based phar archive stub file
|
H A D | alias_acrobatics.phpt | 42 alias "foo" is already used for archive "%salias_acrobatics.phar.zip" cannot be overloaded with "%s… 45 alias "another" is already used for archive "%salias_acrobatics.phar.zip" cannot be overloaded with…
|
/PHP-5.5/ext/phar/tests/tar/ |
H A D | phar_setdefaultstub.phpt | 66 string(60) "<?php // tar-based phar archive stub file 72 string(60) "<?php // tar-based phar archive stub file 78 string(60) "<?php // tar-based phar archive stub file
|
H A D | alias_acrobatics.phpt | 42 alias "foo" is already used for archive "%salias_acrobatics.phar.tar" cannot be overloaded with "%s… 45 alias "another" is already used for archive "%salias_acrobatics.phar.tar" cannot be overloaded with…
|
H A D | tar_nostub.phpt | 46 … dir: '%star_004.phar.tar' is not a phar archive. Use PharData::__construct() for a standard zip o…
|