Searched refs:returnstring (Results 1 – 6 of 6) sorted by relevance
| /plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
| D | demo.browse.php | 467 $returnstring = ''; 470 $returnstring .= ($wrap_in_td ? '<td>' : ''); 471 $returnstring .= '<table class="dump" cellspacing="0" cellpadding="2">'; 473 $returnstring .= '<tr><td valign="top"><b>'.str_replace("\x00", ' ', $key).'</b></td>'."\n"; 474 $returnstring .= '<td valign="top">'.gettype($value); 476 $returnstring .= ' ('.count($value).')'; 478 $returnstring .= ' ('.strlen($value).')'; 484 …$returnstring .= '</td>'."\n".'<td><img src="data:'.$variable['image_mime'].';base64,'.base64_enco… 486 $returnstring .= '</td>'."\n".'<td><i>invalid image data</i></td></tr>'."\n"; 489 $returnstring .= '</td>'."\n".table_var_dump($value, true, $encoding).'</tr>'."\n"; [all …]
|
| D | demo.mp3header.php | 16 $returnstring = ''; 18 $returnstring .= str_pad(dechex(ord(substr($string, $i, 1))), 2, '0', STR_PAD_LEFT).' '; 20 return $returnstring; 26 $returnstring = ''; 29 $returnstring .= ' '; 31 $returnstring .= ' '.substr($string, $i, 1).' '; 34 return $returnstring; 40 $returnstring = ''; 43 $returnstring .= '<table border="1" cellspacing="0" cellpadding="2">'; 45 $returnstring .= '<tr><td valign="top"><b>'.str_replace(chr(0), ' ', $key).'</b></td>'; [all …]
|
| /plugin/odt/ODT/css/ |
| D | cssimportnew.php | 140 $returnstring = '['; 142 $returnstring .= $this->namespaze.'|'; 144 $returnstring .= $this->attribute.$this->operator.$this->value; 145 $returnstring .= ']'; 146 return $returnstring; 370 $returnstring = ''; 372 $returnstring .= $this->type; 375 $returnstring .= '#'.$this->id; 378 $returnstring .= '.'.$class; 381 $returnstring .= $attr_sel->toString(); [all …]
|
| /plugin/jukebox/id3/ |
| D | getid3.lib.php | 18 $returnstring = ''; 21 $returnstring .= str_pad(dechex(ord($string{$i})), 2, '0', STR_PAD_LEFT); 23 $returnstring .= ' '.(ereg("[\x20-\x7E]", $string{$i}) ? $string{$i} : '�'); 26 $returnstring .= ' '; 30 $returnstring = htmlentities($returnstring); 32 return $returnstring;
|
| /plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
| D | getid3.lib.php | 26 $returnstring = ''; 29 $returnstring .= str_pad(dechex(ord($string[$i])), 2, '0', STR_PAD_LEFT); 31 $returnstring .= ' '.(preg_match("#[\x20-\x7E]#", $string[$i]) ? $string[$i] : '¤'); 34 $returnstring .= ' '; 41 $returnstring = htmlentities($returnstring, ENT_QUOTES, $htmlencoding); 43 return $returnstring;
|
| /plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
| D | Mpdf.php | 26574 function StartTransform($returnstring = false) argument 26576 if ($returnstring) { 26583 function StopTransform($returnstring = false) argument 26585 if ($returnstring) { 26592 function transformScale($s_x, $s_y, $x = '', $y = '', $returnstring = false) argument 26621 if ($returnstring) { 26628 function transformTranslate($t_x, $t_y, $returnstring = false) argument 26640 if ($returnstring) { 26647 function transformRotate($angle, $x = '', $y = '', $returnstring = false) argument 26671 if ($returnstring) { [all …]
|