Home
last modified time | relevance | path

Searched refs:fp (Results 201 – 225 of 261) sorted by path

1234567891011

/plugin/mantis/lib/
H A Dclass.wsdlcache.php99 $fp = @fopen($filename, "r");
100 if ($fp) {
102 fclose($fp);
148 $fp = fopen($filename, "w");
149 if (! $fp) {
154 fputs($fp, $s);
155 fclose($fp);
H A Dnusoap.php2308 if($this->persistentConnection && isset($this->fp) && is_resource($this->fp)){
2309 if (!feof($this->fp)) {
2313 fclose($this->fp);
2331 if(!$this->fp) {
2908 if(feof($this->fp)) {
2916 $tmp = fgets($this->fp, 256);
3032 if (feof($this->fp)) {
3043 fclose($this->fp);
3044 $this->fp = false;
3665 fpassthru($fp);
[all …]
/plugin/mathpublish/
H A Dimg.php22 $fp = @fopen($cache, "rb"); variable
23 if($fp) {
24 http_rangeRequest($fp, filesize($cache), 'image/png');
/plugin/mediathumbnails/
H A Dthumb_engines.php139 $fp = $zip->getStream($thumbnail_path);
140 if(!$fp) {
145 while (!feof($fp)) {
146 $thumbnaildata .= fread($fp, 8192);
149 fclose($fp);
/plugin/mermaid/
H A Dmermaid.min.js[all...]
/plugin/mimetex/
H A Dmimetexrender.php116 $fp = fopen($tex,"a+");
117 fputs($fp, $formula);
118 fclose($fp);
/plugin/odp/
H A DZipLib.class.php321 if(!$fp) return(-1);
329 @fwrite($fp, $binary_data, $read_size);
332 fclose($fp);
338 if(!$fp) return(-1);
342 fwrite($fp, $binary_data, 10);
350 @fwrite($fp, $binary_data, $read_size);
355 fwrite($fp, $binary_data,8); fclose($fp);
362 $fp = @fopen($to.$header['filename'],'wb');
363 if(!$fp) return(-1);
371 @fwrite($fp, $binary_data, $read_size);
[all …]
/plugin/odt/action/
H A Dexport.php488 $fp = @fopen($cachefile, "rb");
489 if($fp) {
490 http_rangeRequest($fp, filesize($cachefile), 'application/vnd.oasis.opendocument.text');
/plugin/ol3/
H A Dscript.js8fp=function(){var t=function(e,r){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&…
/plugin/onlinenumber/
H A Dsyntax.php44 if ($fp == FALSE) return FALSE;
45 set_file_buffer($fp, 0);
52 flock($fp, LOCK_SH);
55 while (! feof($fp)) {
56 $line = fgets($fp, 512);
68 flock($fp, LOCK_UN);
70 if(! fclose($fp)) return FALSE;
84 set_file_buffer($fp, 0);
86 flock($fp, LOCK_EX);
116 rewind($fp);
[all …]
/plugin/pagetemplate/
H A Daction.php77 $fp = wikiFN($pageName);
/plugin/panoview/
H A Dtiles.php71 $fp = @fopen($data['cache'], "rb"); variable
72 if($fp) {
73 http_rangeRequest($fp, filesize($data['cache']), 'image/jpeg');
/plugin/passpolicy/
H A Dhelper.php451 $fp = @fopen('/dev/urandom', 'rb');
452 if ($fp !== false) {
453 $rbytes = fread($fp, $bytes);
454 fclose($fp);
/plugin/photogallery/phpThumb/demo/
H A DphpThumb.demo.check.php174 if ($fp = @fopen($phpThumb->cache_filename, 'wb')) { variable
175 fwrite($fp, 'this is a test from '.__FILE__);
176 fclose($fp);
/plugin/photogallery/phpThumb/
H A Dphpthumb.bmp.php33 if ($fp = @fopen($filename, 'rb')) {
34 $BMPdata = fread($fp, filesize($filename));
35 fclose($fp);
H A Dphpthumb.class.php363 fwrite($fp, $rawImageData);
364 fclose($fp);
3829 if ($fp = @fopen($filename, 'rb')) {
3834 $rawimagedata .= fread($fp, $blocksize);
3836 fclose($fp);
4046 if ($fp = @fopen($this->sourceFilename, 'rb')) {
4048 while (!feof($fp)) {
4049 $this->rawImageData .= fread($fp, 32768);
4051 fclose($fp);
4081 $HeaderFourBytes = fread($fp, 4);
[all …]
H A Dphpthumb.functions.php553 while (!feof($fp)) {
560 fclose ($fp);
574 while (!feof($fp)) {
581 fclose ($fp);
598 fclose($fp);
660 fwrite($fp, $out);
689 fclose($fp);
696 fclose($fp);
830 fclose($fp);
1059 fclose($fp);
[all …]
/plugin/podcast/
H A Dhelper.php56 $fp=fsockopen($url_info['host'], $port, $errno, $errstr, 10 );
57 if($fp) {
68 fputs($fp, $head);
69 while( !feof( $fp ) or ( $eoh == true )) {
70 if( $v = fgets( $fp, 1024 )) {
/plugin/preservefilenames/
H A Daction_anteater.php157 $fp = @fopen($file, 'rb');
159 if ($fp) {
160 http_rangeRequest($fp, filesize($file), $mime);
/plugin/projects/lib/
H A Dmutex.php23 $fp = @fopen($this->filename, 'x');
25 if($fp && @fwrite($fp, $USERINFO['name'])) {
26 @fclose($fp);
/plugin/quickstats/GEOIP/
H A Dgeoip.inc1379 $fp = fopen($file, "rb");
1380 if (!$fp) {
1384 $s_array = fstat($fp);
1391 shmop_write($shmid, fread($fp, $size), 0);
H A Dget_geocity2.php37 $fp = @fopen($gzfile,'wb');
38 if($fp === false) {
42 if(!fwrite($fp,$data)) {
46 fclose($fp);
/plugin/quickstats/scripts/
H A Dget_geocity.php31 $fp = @fopen($gzfile,'wb');
32 if($fp === false) {
36 if(!fwrite($fp,$data)) {
40 fclose($fp);
H A Dget_geocity2.php66 $fp = @fopen($gzfile,'wb');
67 if($fp === false) {
71 if(!fwrite($fp,$data)) {
75 fclose($fp);
/plugin/referrers/
H A Dcode.php39 $fp = fopen($curdatefile, "a");
41 $fp = fopen($curdatefile, "w");
42 fwrite($fp, "====== Referrers : $curdate ======\n\n");
43 …fwrite($fp, "//If you find [[https://www.dokuwiki.org/plugin:referrers|Referrers for DokuWiki]] us…
44 fwrite($fp, "^ hostname ^ ip address ^ referrer ^\n");
49 fwrite($fp, "| %%".gethostbyaddr($rh)."%% | ");
50 fwrite($fp, $rh);
60 fwrite($fp, "((%%".$UA."%%)) ");
63 fwrite($fp, "| ".$refhi." |");
64 fwrite($fp, "\n");
[all …]

1234567891011