Home
last modified time | relevance | path

Searched refs:fh (Results 1 – 9 of 9) sorted by path

/dokuwiki/inc/Search/
H A DIndexer.php1020 $fh = @fopen($fn . '.tmp', 'w');
1021 if (!$fh) return false;
1022 fwrite($fh, implode("\n", $lines));
1024 fwrite($fh, "\n");
1025 fclose($fh);
1047 $fh = @fopen($fn, 'r');
1048 if (!$fh) return '';
1050 while (($line = fgets($fh)) !== false) {
1053 fclose($fh);
1074 $fh
[all...]
/dokuwiki/inc/
H A Dhttputils.php94 * @param resource $fh - file handle for an already open file
100 function http_rangeRequest($fh, $size, $mime)
168 fseek($fh, $start); //seek to start of range
170 while (!feof($fh) && $chunk > 0) {
172 echo fread($fh, $chunk);
97 http_rangeRequest($fh, $size, $mime) global() argument
H A Dinit.php364 $fh = @fopen($file, 'a');
365 if ($fh) {
366 fclose($fh);
H A Dio.php260 $fh = @gzopen($file, $mode . '9');
261 if (!$fh) return false;
262 gzwrite($fh, $content);
263 gzclose($fh);
271 $fh = @bzopen($file, 'w');
272 if (!$fh) return false;
273 bzwrite($fh, $content);
274 bzclose($fh);
276 $fh = @fopen($file, $mode);
277 if (!$fh) retur
[all...]
H A Dmedia.php652 $fh = @fopen($file, 'rb');
653 if ($fh) {
654 $bytes = fread($fh, 256);
655 fclose($fh);
/dokuwiki/lib/plugins/config/core/
H A DWriter.php45 if (!$fh = @fopen($this->savefile, 'wb')) {
62 fwrite($fh, $out);
63 fclose($fh);
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php1239 $fh = fopen($file, 'rb');
1240 if (!$fh) return false;
1241 $magic = fread($fh, 5);
1242 fclose($fh);
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php22 protected $fh; variable in splitbrain\\PHPArchive\\Tar
64 $this->fh = @gzopen($this->file, 'rb');
66 $this->fh = @bzopen($this->file, 'r');
68 $this->fh = @fopen($this->file, 'rb');
71 if (!$this->fh) {
237 $this->fh = 0;
246 $this->fh = @gzopen($this->file, 'wb'.$this->complevel);
248 $this->fh = @bzopen($this->file, 'w');
250 $this->fh = @fopen($this->file, 'wb');
253 if (!$this->fh) {
[all...]
H A DZip.php21 protected $fh; variable in splitbrain\\PHPArchive\\Zip
57 $this->fh = @fopen($this->file, 'rb');
58 if (!$this->fh) {
102 @rewind($this->fh);
103 @fseek($this->fh, $centd['offset']);
150 @fseek($this->fh, $pos_entry);
153 $pos_entry = ftell($this->fh); // position of the next file in central file directory
154 fseek($this->fh, $header['offset']); // seek to beginning of file header
212 $buffer = fread($this->fh, $read_size);
275 $this->fh
[all...]