Home
last modified time | relevance | path

Searched refs:fp (Results 151 – 175 of 261) sorted by path

1234567891011

/plugin/flowplayer/player/
H A DREADME.txt21 - #586 add a bitrate label with a new namespace attribute fp:bitratelabel.
/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/geourl/
H A Dcode.php31 function gu_write($fp, $name, $val) argument
33 fwrite($fp, '$gu_settings[\''.$name.'\'] = \''.$val.'\';'."\n");
44 $fp = fopen($gu_file, "w");
45 fwrite($fp, '<?php'."\n// This file is automatically generated\n");
46 gu_write($fp, 'latitude', $gu_settings['latitude']);
47 gu_write($fp, 'longitude', $gu_settings['longitude']);
48 fclose($fp);
/plugin/glossary/
H A Dglossary.class.php249 $fp = fopen ($fileName, "r+");
250 if (!flock ($fp, $lock)) {
/plugin/google_adsense2/
H A Dcode.php28 function gads_write($fp, $name, $val) argument
30 fwrite($fp, '$gads_settings[\''.$name.'\'] = \''.$val.'\';'."\n");
41 $fp = fopen($gads_file, "w");
42 fwrite($fp, '<?php'."\n// This file is automatically generated\n");
44 gads_write($fp, 'enabled', $gads_settings['enabled']);
45 gads_write($fp, 'debug', $gads_settings['debug']);
46 gads_write($fp, 'dontcountadmin', $gads_settings['dontcountadmin']);
47 gads_write($fp, 'dontcountusers', $gads_settings['dontcountusers']);
49 gads_write($fp, 'google_ad_client', $gads_settings['google_ad_client']);
51 gads_write($fp, 'google_color_bg', $gads_settings['google_color_bg']);
[all …]
/plugin/googleads/
H A Dcode.php27 function gads_write($fp, $name, $val) argument
29 fwrite($fp, '$gads_settings[\'' . $name . '\'] = \'' . $val . '\';' . "\n");
39 $fp = fopen($gads_file, "w");
40 fwrite($fp, '<?php' . "\n// This file is automatically generated\n");
41 gads_write($fp, 'code', $gads_settings['code']);
42 gads_write($fp, 'dontcountadmin', $gads_settings['dontcountadmin']);
43 gads_write($fp, 'dontcountmanager', $gads_settings['dontcountmanager']);
44 gads_write($fp, 'dontcountusers', $gads_settings['dontcountusers']);
45 fclose($fp);
/plugin/googlesearch/
H A Dnusoap.php2104 if($this->persistentConnection && isset($this->fp) && is_resource($this->fp)){
2105 if (!feof($this->fp)) {
2109 fclose($this->fp);
2129 if(!$this->fp) {
2552 if(feof($this->fp)) {
2560 $tmp = fgets($this->fp, 256);
2676 if (feof($this->fp)) {
2687 fclose($this->fp);
2688 $this->fp = false;
3278 fpassthru($fp);
[all …]
/plugin/gtime/gtlib/util/
H A DGTUtil.php133 $fp = fopen($file, 'wb+');
135 if (!$fp) {
139 if (!fwrite($fp, GTUtil::fromByteArray($bytes))) {
143 if (!fclose($fp)) {
190 $fp = fopen($file, 'rb');
192 if (!$fp) {
199 $data = fread($fp, $length);
210 fclose($fp);
/plugin/gtime/
H A Drenderer.php92 $fp = fopen($filetemp, 'r');
94 if (!$fp) {
107 fpassthru($fp);
108 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/indexmenu/
H A Dadmin.php
/plugin/indexmenu/inc/
H A Drepo.class.php48 $fp = @fopen($zipfile, 'rb');
49 if ($fp) {
50 $ct = @fread($fp, $len);
53 @fclose($fp);
/plugin/jplayer/vendor/james-heinrich/getid3/
H A Dchangelog.txt908 * Bugfix: PHP 4.1.x compatiblity - fgets($fp) => fgets($fp, 1024)
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.mimeonly.php48 if ($fp = fopen($filename, 'rb')) {
57 fseek($fp, $getID3->info['avdataoffset'], SEEK_SET);
58 $formattest = fread($fp, 16); // 16 bytes is sufficient for any format except ISO CD-image
59 fclose($fp);
H A Ddemo.mp3header.php1104 if ($fp = fopen($file, 'rb')) {
1125 fseek($fp, $offset, SEEK_SET);
1127 while (($byteslefttowrite > 0) && ($buffer = fread($fp, 32768))) {
1151 fclose($fp);
H A Ddemo.zip.php24 if ($getid3->fp = fopen($filename, 'rb')) {
35 fclose($getid3->fp);
39 fseek($getid3->fp, $valuearray['entry_offset'], SEEK_SET);
45 fseek($getid3->fp, $LocalFileHeader['data_offset'], SEEK_SET);
47 …while ((strlen($compressedFileData) < $LocalFileHeader['compressed_size']) && !feof($getid3->fp)) {
48 $compressedFileData .= fread($getid3->fp, 32768);
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dextension.cache.dbm.php221 * @param resource $fp
225 public function analyze($filename, $filesize=null, $original_filename='', $fp=null) { argument
242 $result = parent::analyze($filename, $filesize, $original_filename, $fp);
H A Dextension.cache.mysql.php165 * @param resource $fp
169 public function analyze($filename, $filesize=null, $original_filename='', $fp=null) { argument
193 $analysis = parent::analyze($filename, $filesize, $original_filename, $fp);
H A Dextension.cache.mysqli.php198 * @param resource $fp
202 public function analyze($filename, $filesize=null, $original_filename='', $fp=null) { argument
224 $analysis = parent::analyze($filename, $filesize, $original_filename, $fp);
H A Dextension.cache.sqlite3.php178 * @param resource $fp
182 public function analyze($filename, $filesize=null, $original_filename='', $fp=null) { argument
205 $analysis = parent::analyze($filename, $filesize, $original_filename, $fp);
H A Dgetid3.lib.php771 $fp = fopen($file, 'rb');
772 fseek($fp, $offset);
775 $buffer = fread($fp, min($size, getID3::FREAD_BUFFER_SIZE));
780 fclose($fp);
1659 $fp = fopen($file, 'r');
1663 fgets($fp, 1024);
1670 $line = ltrim(fgets($fp, 1024), "\t ");
1688 fclose($fp);
H A Dgetid3.php231 public $fp; variable in getID3
414 * @param resource $fp
447 …if (($fp != null) && ((get_resource_type($fp) == 'file') || (get_resource_type($fp) == 'stream')))…
448 $this->fp = $fp;
527 * @param resource $fp
563 fseek($this->fp, 0);
582 fclose($this->fp);
589 fclose($this->fp);
599 fclose($this->fp);
611 fclose($this->fp);
[all …]
H A Dmodule.archive.tar.php41 while (!feof($this->getid3->fp)) {
H A Dmodule.archive.zip.php169 rewind($this->getid3->fp);
215 rewind($this->getid3->fp);
H A Dmodule.audio-video.matroska.php368 …getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp);

1234567891011