Home
last modified time | relevance | path

Searched refs:filename (Results 751 – 756 of 756) sorted by path

1...<<31

/plugin/zip/pear/File/Archive/Writer/
H A DMemoryArchive.php73 ($filename, &$t, $stat = array(), $autoClose = true) argument
75 parent::File_Archive_Writer_Archive($filename, $t, $stat, $autoClose);
81 function newFile($filename, $stat = array(), argument
98 $this->currentFilename = $filename;
160 function writeFile($filename) argument
163 $this->currentDataFile = $filename;
169 $this->buffer .= file_get_contents($filename);
181 function appendFileData($filename, $stat, &$data) { } argument
204 function appendFile($filename, $dataFilename) argument
207 $filename,
H A DMulti.php53 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument
57 $error = $this->writers[$key]->newFile($filename, $stat, $mime);
99 function writeFile($filename) argument
103 $error = $this->writers[$key]->writeFile($filename);
H A DOutput.php61 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument
72 header("Content-disposition: attachment; filename=$filename");
90 function writeFile($filename) { readfile($filename); } argument
H A DTar.php42 var $filename = null; variable in File_Archive_Writer_Tar
49 * @param string $filename name of the file
54 function tarHeader($filename, $stat) argument
75 if (strlen($filename) > 255) {
79 } else if (strlen($filename) > 100) {
80 $filePrefix = substr($filename, 0, strlen($filename)-100);
81 $filename = substr($filename, -100);
85 $filename,
136 if ($this->filename !== null) {
160 $this->filename = $filename;
[all …]
H A DUniqueAppender.php74 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument
76 if (isset($this->fileList[$filename])) {
77 $this->toDelete[$this->fileList[$filename]] = true;
80 return $this->writer->newFile($filename, $stat, $mime);
86 … function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") argument
88 if (isset($this->fileList[$filename])) {
89 $this->toDelete[$this->fileList[$filename]] = true;
92 return $this->writer->newFromTempFile($tmpfile, $filename, $stat, $mime);
114 function writeFile($filename) argument
116 return $this->writer->writeFile($filename);
H A DZip.php63 function File_Archive_Writer_Zip($filename, &$innerWriter, argument
115 * @param string $filename name of the file
122 $filename = preg_replace("/^(\.{1,2}(\/|\\\))+/","",$filename);
135 $filename;
144 function appendFileData($filename, $stat, $data) argument
156 $filename = preg_replace("/^(\.{1,2}(\/|\\\))+/","",$filename);
167 strlen($filename),
169 $filename.
183 $filename;
188 function appendFile($filename, $dataFilename) argument
[all …]

1...<<31