Lines Matching full:the
17 * Set the compression level and type
34 * Read the contents of an archive
36 …* This function lists the files stored in the archive, and returns an indexed array of FileInfo ob…
38 …* The archive is closed afer reading the contents, because rewinding is not possible in bzip2 stre…
39 * Reopen the file with open() again if you want to do additional operations
48 … * The $strip parameter allows you to strip a certain number of path components from the filenames
49 …* found in the archive file, similar to the --strip-components feature of GNU tar. This is trigger…
51 …* Alternatively a fixed string prefix may be passed in $strip. If the filename matches this prefix,
52 * the prefix will be stripped. It is recommended to give prefixes with a trailing slash.
54 …* By default this will extract all files found in the archive. You can restrict the output using t…
56 …lude is set, only files that match this expression will be extracted. Files that match the $exclude
60 …* The archive is closed afterwards. Reopen the file with open() again if you want to do additional…
62 * @param string $outdir the target directory for extracting
63 * @param int|string $strip either the number of path components or a fixed prefix to strip
74 * If $file is empty, the archive file will be created in memory
81 * Add a file to the current archive using an existing file in the filesystem
83 * @param string $file path to the original file
84 …* @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject w…
90 * Add a file to the current archive using the given $data as content
92 …* @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject w…
93 * @param string $data binary content of the file to add
99 * Close the archive, close all file handles
101 * After a call to this function no more data can be added to the archive, for
107 * Returns the created in-memory archive data
109 * This implicitly calls close() on the Archive
114 * Save the created in-memory archive data
116 * Note: It is more memory effective to specify the filename in the create() function and
117 * let the library work on the new file directly.
126 * The callback is called with a FileInfo object as parameter. You can use this to show progress