Home
last modified time | relevance | path

Searched refs:fp (Results 201 – 225 of 261) sorted by last modified time

1234567891011

/plugin/ebookexport/
H A Daction.php196 $fp = @fopen($zipfile, "rb");
197 if($fp) {
201 fseek($fp,0);
203 while (!feof($fp) && $chunk > 0) {
205 print fread($fp, $chunk);
/plugin/eclipseupdateurl/
H A Dsyntax.php328 $fp = @fopen($file,"w");
329 if(!$fp) return false;
330 fwrite($fp,$data);
331 fclose($fp);
/plugin/eventum/XML/
H A DRPC.php934 $fp = @fsockopen($protocol . $server, $port,
946 if (!$fp && $this->proxy) {
952 } elseif (!$fp) {
965 socket_set_timeout($fp, $timeout);
968 if (!fputs($fp, $op, strlen($op))) {
972 $resp = $msg->parseResponseFile($fp);
974 $meta = socket_get_status($fp);
976 fclose($fp);
982 fclose($fp);
1418 function parseResponseFile($fp) argument
[all …]
/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/jukebox/id3/
H A Dgetid3.lib.php653 if ($fp = @fopen($file, 'rb')) {
657 fseek($fp, $offset, SEEK_SET);
659 while (($byteslefttowrite > 0) && ($buffer = fread($fp, GETID3_FREAD_BUFFER_SIZE))) {
667 fclose($fp);
1253 $fp = fopen($file, 'r');
1257 fgets($fp, 1024);
1264 $line = ltrim(fgets($fp, 1024), "\t ");
1280 fclose($fp);
H A Dgetid3.php205 fseek($fp, 0, SEEK_END);
208 (ftell($fp) < 0)) {
210 fclose($fp);
245 fseek($fp, 0, SEEK_SET);
246 $header = fread($fp, 10);
290 $formattest = fread($fp, 32774);
297 fclose($fp);
304 fclose($fp);
314 fclose($fp);
326 fclose($fp);
[all …]
/plugin/badbehaviour/
H A Dadmin.php167 $fp = fopen($file, 'rb');
168 if ($fp===false) return $data;
171 fseek($fp, 0, SEEK_END);
172 $pos = ftell($fp);
185 fseek($fp,$pos);
187 $tmp = fread($fp,$read);
207 fclose($fp);
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/
H A DSkeleton.php403 $fp = fopen($destination . $this->className . 'Test.php', 'w');
404 fwrite($fp, "<?php\n");
407 fwrite($fp, $this->testClass);
411 fwrite($fp, $this->_createTest());
415 fwrite($fp, "?>\n");
416 fclose($fp);
/plugin/authucenter/lib/api/
H A Duc.php177 $fp = fopen($cachefile, 'w');
180 fwrite($fp, $s);
181 fclose($fp);
200 $fp = fopen($cachefile, 'w');
203 fwrite($fp, $s);
204 fclose($fp);
212 @fwrite($fp, trim($configfile));
213 @fclose($fp);
228 $fp = fopen($cachefile, 'w');
231 fwrite($fp, $s);
[all …]
/plugin/authucenter/lib/uc_client/
H A Dclient.php76 $fp = '';
78 $fp = @fsockopen($hostname, $port, $errno, $errstr, $timeout);
84 return $fp;
275 if(!$fp) {
278 stream_set_blocking($fp, $block);
279 stream_set_timeout($fp, $timeout);
280 @fwrite($fp, $out);
281 $status = stream_get_meta_data($fp);
283 while (!feof($fp) && !$fpflag) {
290 while(!feof($fp) && !$stop) {
[all …]
/plugin/authucenter/lib/uc_client/model/
H A Dmisc.php97 if(!$fp = @fsocketopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout)) {
111 if(!$fp) {
114 stream_set_blocking($fp, $block);
115 stream_set_timeout($fp, $timeout);
116 @fwrite($fp, $out);
117 $status = stream_get_meta_data($fp);
119 while (!feof($fp) && !$fpflag) {
120 if(($header = @fgets($fp)) && ($header == "\r\n" || $header == "\n")) {
126 while(!feof($fp) && !$stop) {
127 $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit));
[all …]
H A Dcache.php14 $fp = @fopen($filename, 'w');
15 @fwrite($fp, $s);
16 @fclose($fp);
/plugin/authucenter/lib/uc_client/lib/
H A Dsendmail.inc.php44 stream_set_blocking($fp, true);
46 $lastmessage = fgets($fp, 512);
52 $lastmessage = fgets($fp, 512);
65 fputs($fp, "AUTH LOGIN\r\n");
66 $lastmessage = fgets($fp, 512);
87 $lastmessage = fgets($fp, 512);
110 fputs($fp, "DATA\r\n");
111 $lastmessage = fgets($fp, 512);
121 fputs($fp, $headers."\r\n");
122 fputs($fp, "\r\n\r\n");
[all …]
/plugin/rtmchecklist/
H A Daction.php153 $fp = fopen(RTMCHECKLIST_ROOTDIR.'conf/profile_'.$username.'.php', 'w');
154 fwrite($fp, "<?php\n");
155 fwrite($fp, "global \$INFO;\n\n");
156 …fwrite($fp, "\$INFO['userinfo']['rtmemail'] = '".htmlspecialchars($INPUT->str('rtmemail'))."';\n");
157 fwrite($fp, '?>');
158 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/botbouncer/admin/
H A Dstatistics.php116 $fp = fopen($file, 'rb');
117 if ($fp===false) return $data;
120 fseek($fp, 0, SEEK_END);
121 $pos = ftell($fp);
134 fseek($fp,$pos);
136 $tmp = fread($fp,$read);
156 fclose($fp);
/plugin/html2pdf/html2pdf/html2ps/
H A Dfetcher.url.class.php131 $fp = @fsockopen($this->host,$this->port,$errno,$errstr,HTML2PS_CONNECTION_TIMEOUT);
133 if (!$fp) {
144 return $fp;
164 $fp = @fsockopen("ssl://$this->host", $this->port, $errno, $errstr, 5);
166 if (!$fp) {
177 return $fp;
/plugin/mantis/lib/
H A Dclass.soap_server.php255 $fp = fopen($this->externalWSDLURL, 'r');
256 fpassthru($fp);
H A Dclass.wsdl.php242 if ($fp = @fopen($path, 'r')) {
244 while ($data = fread($fp, 32768)) {
247 fclose($fp);
H A Dchangelog154 - soap_transport_http: Check that $this->fp exists when doing persistent connections
H A Dclass.soap_transport_http.php201 if($this->persistentConnection && isset($this->fp) && is_resource($this->fp)){
202 if (!feof($this->fp)) {
206 fclose($this->fp);
224 if(!$this->fp) {
801 if(feof($this->fp)) {
809 $tmp = fgets($this->fp, 256);
883 $tmp = fgets($this->fp, 256);
913 $tmp = fgets($this->fp, 256);
925 if (feof($this->fp)) {
936 fclose($this->fp);
[all …]
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 …]
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);
/plugin/authhiorgserver/
H A Dauth.php297 if ($fp = @fopen($url, "r")) {
299 while (!feof($fp)) $daten.= fread($fp, 1024);
300 fclose($fp);
/plugin/sphinxsearch/
H A Dsphinxapi.php584 if ( !$fp )
603 fclose ( $fp );
613 fclose ( $fp );
618 return $fp;
627 $header = fread ( $fp, 8 );
632 while ( $left>0 && !feof($fp) )
634 $chunk = fread ( $fp, $left );
643 fclose ( $fp );
1100 if (!( $fp = $this->_Connect() ))
1560 if ( !$fp = $this->_Connect() )
[all …]

1234567891011