Home
last modified time | relevance | path

Searched refs:fh (Results 26 – 50 of 90) sorted by relevance

1234

/plugin/farmer/3rdparty/
H A DPHPIco.php138 if (false === ($fh = fopen($file, 'w')))
141 if (false === (fwrite($fh, $data))) {
142 fclose($fh);
146 fclose($fh);
/plugin/struct/meta/
H A DCSVImporter.php20 protected $fh; variable in dokuwiki\\plugin\\struct\\meta\\CSVImporter
85 $this->fh = fopen($file, 'rb');
86 if (!$this->fh) {
100 return fgetcsv($this->fh);
/plugin/dokumicrobugtracker/
H A Dedit.php80 $fh = fopen($pfile, 'w'); variable
81 fwrite($fh, serialize($bugs));
82 fclose($fh);
H A Dsyntax.php138 $fh = fopen($pfile, 'w');
139 fwrite($fh, serialize($bugs));
140 fclose($fh);
/plugin/givemeyouremail/
H A Dsyntax.php134 $fh = fopen($dfile, 'w');
135 fwrite($fh, serialize($givemeyouremail));
136 fclose($fh);
/plugin/webdav/core/
H A DUtils.php51 $fh = @fopen($file, 'wb');
53 if (!$fh) {
59 fwrite($fh, $buf);
62 fclose($fh);
/plugin/bibtex/OSBib/
H A DPARSEXML.php41 function extractEntries($fh)
44 while(!feof($fh))
46 if(preg_match_all("/<style.*>(.*)<\/style>/Ui", trim(fgets($fh)), $startEntry))
/plugin/nsexport/packer/ziphtml/
H A Dpacker.php140 $fh = @opendir("$base/$dir");
141 if(!$fh) return;
142 while(false !== ($file = readdir($fh))) {
151 closedir($fh);
H A Dzip.php36 $fh = @opendir("$base/$dir");
37 if(!$fh) return;
38 while(false !== ($file = readdir($fh))) {
47 closedir($fh);
/plugin/stylingpages/
H A Daction.php140 $fh = @fopen($path, 'wb') ;
141 @fwrite($fh, $content);
142 @fclose($fh);
/plugin/autolink2/
H A Dhelper.php231 $fh = fopen($this->idx_dir.'/'.$idx.'.idx', 'w');
232 if (!$fh) return false;
234 fwrite($fh, join('', $this->page_idx));
241 fwrite($fh, join('', $autolink_index));
243 fclose($fh);
/plugin/poll/
H A Dsyntax.php97 $fh = fopen($pfile, 'w');
98 fwrite($fh, serialize($poll));
99 fclose($fh);
/plugin/btable2/
H A Dsyntax.php188 $fh = fopen($dfile, 'w');
189 fwrite($fh, serialize($doodle));
190 fclose($fh);
203 $fh = fopen($dfile, 'w');
204 fwrite($fh, serialize($doodle));
205 fclose($fh);
/plugin/aichat/
H A Dcli.php460 $fh = fopen('php://stdin', 'r');
461 $value = trim(fgets($fh));
462 fclose($fh);
/plugin/photogallery/phpThumb/
H A Dphpthumb.gif.php78 if (!($fh = @fopen($lpszFileName, 'wb'))) {
81 @fwrite($fh, $fd, strlen($fd));
82 @fflush($fh);
83 @fclose($fh);
100 if (!($fh = @fopen($lpszFileName, 'wb'))) {
103 @fwrite($fh, $fd, strlen($fd));
104 @fflush($fh);
105 @fclose($fh);
824 if (!($fh = @fopen($lpszFileName, 'rb'))) {
828 fclose($fh);
[all …]
/plugin/removeold/
H A Dadmin.php247 $fh = fopen($log_file, 'a+');
248 if (!fwrite($fh, $record)) {
251 fclose($fh);
/plugin/siteexport/
H A Dcron.php92 if (!$fh = @fopen($this->configFile, 'wb')) {
102 @fwrite($fh, $out);
103 fclose($fh);
/plugin/combo/ComboStrap/
H A DLogUtility.php156 $fh = fopen($file, 'a');
157 if ($fh) {
159 fwrite($fh, date('c') . $sep . self::LVL_NAME[$logLevel] . $sep . $msg . $sep . $INPUT->server->str('REMOTE_ADDR') . $sep . $id . "\n");
160 fclose($fh);
/plugin/register/
H A Dregister.php180 $fh = $this->font_height($fontidx, $height_text, $angle);
183 $this->enlarge($x + $fw, $y + $fh * 1.5);
186 $y + $fh, $this->black, $this->font_path($fontidx), $text);
431 $fh = $im->font_height(FONT_LABELS) / 2;
432 $im->text($cx2+$fw, $cy2-$fh, FONT_LABELS, $text);
442 $im->text($cx2+$fw, $cy2+$fh, FONT_DESC, $t);
443 $fh += $im->font_height(FONT_DESC);
445 $yoff += $fh;
/plugin/abc2/abc-libraries/abc2svg/
H A Dpage-1.js11 of()},gen_hf:function(page,ty){var a,i,j,k,x,y,y0,s,font=page.abc.get_font(ty),str=page[ty],cfmt=page.abc.cfmt(),fh=font.size*1.1,pos=['">','" text-anchor="middle">','" text-anchor="end">']
117 y+=fh}}
118 return fh*a[4]},open_page:function(page,ht){var h,l,abc=page.abc,cfmt=abc.cfmt(),sty='<div style="line-height:0'
147 page.fh=abc2svg.page.gen_hf(page,"footer")
151 page.hmax-=page.fh}
154 if(page.footer){h=page.hmax+page.fh-page.h
158 (h-page.fh).toFixed(1)+')">'+
/plugin/authwordpress/
H A Dclass-phpass.php69 ($fh = @fopen('/dev/urandom', 'rb'))) {
70 $output = fread($fh, $count);
71 fclose($fh);
/plugin/statdisplay/helper/
H A Dlog.php85 $fh = fopen($this->logfile, 'r');
86 if (!$fh) {
90 fseek($fh, $pos, SEEK_SET);
94 while (feof($fh) == 0 && $lines < $maxlines) {
95 $line = fgets($fh);
/plugin/issuetracker/
H A Dedit.php339 $fh = fopen($modfile, 'w');
340 fwrite($fh, serialize($mods));
341 fclose($fh);
406 $fh = fopen($pfile, 'w'); variable
407 fwrite($fh, serialize($issues));
408 fclose($fh);
/plugin/multipoll/
H A Dsyntax.php155 if($fh = fopen($pfile, 'w')) {
156 fwrite($fh, serialize($poll));
157 fclose($fh);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DTTFontFileAnalysis.php12 $this->fh = fopen($file, 'rb');
13 if (!$this->fh) {
228 $panose = fread($this->fh, 10);
451 fclose($this->fh);

1234