Home
last modified time | relevance | path

Searched refs:substr (Results 51 – 75 of 2112) sorted by relevance

12345678910>>...85

/plugin/zoom/
H A Dsyntax.php57 $match = substr($match,7,-2); //strip markup from start and end
61 if (substr($match,0,1) == ' ') {
62 if (substr($match,-1,1) == ' ') {
70 elseif (substr($match,-1,1) == ' ') {
73 elseif (substr($match,0,1) == '*') {
74 $match = substr($match,1);
75 if (substr($match,-1,1) == '*') {
76 $match = substr($match,0,-1);
84 elseif (substr($match,-1,1) == '*') {
85 $match = substr($match,0,-1);
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.vqf.php46 $thisfile_vqf_raw['header_tag'] = substr($VQFheaderData, $offset, 4);
55 $thisfile_vqf_raw['version'] = substr($VQFheaderData, $offset, 8);
57 $thisfile_vqf_raw['size'] = getid3_lib::BigEndian2Int(substr($VQFheaderData, $offset, 4));
65 $ChunkName = substr($ChunkData, $chunkoffset, 4);
71 $ChunkSize = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, 4));
87 …$thisfile_vqf_COMM['channel_mode'] = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, …
89 …$thisfile_vqf_COMM['bitrate'] = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, …
91 …$thisfile_vqf_COMM['sample_rate'] = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, …
93 …$thisfile_vqf_COMM['security_level'] = getid3_lib::BigEndian2Int(substr($ChunkData, $chunkoffset, …
113 …$thisfile_vqf['comments'][$this->VQFcommentNiceNameLookup($ChunkName)][] = trim(substr($ChunkData,…
[all …]
H A Dmodule.graphic.efax.php32 $info['efax']['header']['magic'] = substr($efaxheader, 0, 2);
39 $info['efax']['header']['filesize'] = getid3_lib::LittleEndian2Int(substr($efaxheader, 2, 4));
43 …$info['efax']['header']['software1'] = rtrim(substr($efaxheader, 26, 32), …
44 …$info['efax']['header']['software2'] = rtrim(substr($efaxheader, 58, 32), …
45 …$info['efax']['header']['software3'] = rtrim(substr($efaxheader, 90, 32), …
47 $info['efax']['header']['pages'] = getid3_lib::LittleEndian2Int(substr($efaxheader, 198, 2));
48 $info['efax']['header']['data_bytes'] = getid3_lib::LittleEndian2Int(substr($efaxheader, 202, 4));
H A Dmodule.audio.shorten.php32 if (substr($ShortenHeader, 0, 4) != $magic) {
33 … at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes(substr($ShortenHeader, 0,…
41 $info['shn']['version'] = getid3_lib::LittleEndian2Int(substr($ShortenHeader, 4, 1));
45 $info['shn']['seektable']['present'] = substr($SeekTableSignatureTest, 4, 8) == 'SHNAMPSK';
47 …$info['shn']['seektable']['length'] = getid3_lib::LittleEndian2Int(substr($SeekTableSignatureTest,…
153 if (!empty($output) && (substr($output, 12, 4) == 'fmt ')) {
160 $fmt_size = getid3_lib::LittleEndian2Int(substr($output, 16, 4));
161 $DecodedWAVFORMATEX = getid3_riff::parseWAVEFORMATex(substr($output, 20, $fmt_size));
166 if (substr($output, 20 + $fmt_size, 4) == 'data') {
168 …$info['playtime_seconds'] = getid3_lib::LittleEndian2Int(substr($output, 20 + 4 + $fmt_size, 4)) /…
H A Dmodule.archive.gzip.php69 $attr = unpack($unpack_header, substr($buf, 0, $start_length));
95 $attr = unpack($unpack_header, substr($buff, 0, $start_length));
124 $w_xlen = substr($buff, $fpointer, 2);
128 $thisInfo['raw']['xfield'] = substr($buff, $fpointer, $xlen);
138 $si1 = ord(substr($buff, $fpointer + $idx++, 1));
139 $si2 = ord(substr($buff, $fpointer + $idx++, 1));
141 $w_xsublen = substr($buff, $fpointer + $idx, 2);
188 $w_crc = substr($buff, $fpointer, 2);
209 $cdata = substr($buff, $fpointer);
210 $cdata = substr($cdata, 0, strlen($cdata) - 8);
[all …]
H A Dmodule.audio-video.ts.php32 if (substr($TSheader, 0, 1) != $magic) {
33 …agic).'" at '.$info['avdataoffset'].', found '.getid3_lib::PrintHexBytes(substr($TSheader, 0, 1)).…
41 …$info['ts']['packet']['sync'] = getid3_lib::BigEndian2Int(substr($TSheader, $offset, 1)); $offset …
42 …$pid_flags_raw = getid3_lib::BigEndian2Int(substr($TSheader, $offset, 2)); $offset …
43 …$SAC_raw = getid3_lib::BigEndian2Int(substr($TSheader, $offset, 1)); $offset …
56 …$AdaptionField_raw = getid3_lib::BigEndian2Int(substr($TSheader, $offset, 2)); $offset += 2;
67 …$info['ts']['packet']['adaption']['raw']['pcr'] = getid3_lib::BigEndian2Int(substr($TSheader, $off…
70 …$info['ts']['packet']['adaption']['raw']['opcr'] = getid3_lib::BigEndian2Int(substr($TSheader, $of…
H A Dmodule.audio.au.php33 if (substr($AUheader, 0, 4) != $magic) {
34 … at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes(substr($AUheader, 0, 4)).…
47 $thisfile_au['header_length'] = getid3_lib::BigEndian2Int(substr($AUheader, 4, 4));
51 $thisfile_au['data_size'] = getid3_lib::BigEndian2Int(substr($AUheader, 8, 4));
52 $thisfile_au['data_format_id'] = getid3_lib::BigEndian2Int(substr($AUheader, 12, 4));
53 $thisfile_au['sample_rate'] = getid3_lib::BigEndian2Int(substr($AUheader, 16, 4));
54 $thisfile_au['channels'] = getid3_lib::BigEndian2Int(substr($AUheader, 20, 4));
55 $thisfile_au['comments']['comment'][] = trim(substr($AUheader, 24));
H A Dmodule.misc.cue.php173 $line = substr($line, strpos($line, ' ') + 1);
174 $type = strtolower(substr($line, strrpos($line, ' ')));
177 $line = substr($line, 0, strrpos($line, ' ') - 1);
252 $type = strtolower(substr($line, 0, strpos($line, ' ')));
253 $line = substr($line, strpos($line, ' ') + 1);
259 $number = intval(substr($line, 0, strpos($line, ' ')));
260 $line = substr($line, strpos($line, ' ') + 1);
286 $category = strtolower(substr($line, 0, strpos($line, ' ')));
287 $line = substr($line, strpos($line, ' ') + 1);
322 $line = substr($line, strpos($line, ' ') + 1);
[all …]
/plugin/isauth/
H A Dsyntax.php79 $auth = trim(substr($match, 8, -1));
130 if (substr($val,0,1)=="!") {
132 $val=substr($val,1);
149 if (stristr(substr($r,0,5),"\n<p>\n")) {
150 $r = substr($r,5);
152 // if (stristr(substr($r,-7),"\n</p>\n")) {
153 // $r = substr($r,0,strlen($r)-6);
156 if (stristr(substr($r,-7),"\n\n</p>\n")) {
157 $r = substr($r,0,-7);
159 if (stristr(substr(
[all...]
/plugin/mikioplugin/syntax/
H A Dcore.php125 $match_fix = preg_replace('/\s*=\s*/', '=', trim(substr($match, strlen($this->tagPrefix . $this->tag) + 1, -1)));
132 $value = substr($item, $i + 1);
134 if (substr($value, 0, 1) == '"') { $value = substr($value, 1);
136 if (substr($value, -1) == '"') { $value = substr($value, 0, -1);
139 $options[substr($item, 0, $i)] = $value;
206 if (substr($s, -3) == 'rem') {
207 $i = substr($s, 0, -3);
209 } elseif (substr(
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DEanUpc.php95 $tmp = substr($code, 4, 3);
96 $prodCode = (int) substr($code, 7, 5); // product code
100 $upceCode = substr($code, 2, 2) . substr($code, 9, 3) . substr($code, 4, 1);
105 $tmp = substr($code, 5, 2);
108 $upceCode = substr($code, 2, 3) . substr($code, 10, 2) . '3';
113 $tmp = substr($code, 6, 1);
116 $upceCode = substr(
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DImageProcessor.php321 $unitSp = ord(substr($data, $j + 7, 1));
323 $ppUx = $this->twoBytesToInt(substr($data, $j + 8, 2)); // horizontal pixels per meter, usually set to zero
390 $length = $this->twoBytesToInt(substr($data, $pos - 2, 2)) - 16;
393 $icc[$sn - 1] = substr($data, $pos + 14, $length);
400 if (substr($icc, 36, 4) !== 'acsp') {
404 $input = substr($icc, 16, 4);
405 $output = substr($icc, 20, 4);
442 if (substr($data, 12, 4) !== 'IHDR') {
446 $w = $this->fourBytesToInt(substr($data, 16, 4));
447 $h = $this->fourBytesToInt(substr(
[all...]
/plugin/reflect/
H A Daction.php144 if ( substr($cache_path, -3) == 'png' ) {
176 $red = hexdec(substr($bgcolor, 0, 2));
178 $blue = hexdec(substr($bgcolor, 4, 2));
183 $red = hexdec(substr($bgcolor, 0, 2));
190 $red = substr($bgcolor, 0, 1);
191 $green = substr($bgcolor, 1, 1);
192 $blue = substr($bgcolor, 2, 1);
193 $alpha = substr($bgcolor, 3, 1);
201 $red = substr($bgcolor, 0, 1);
202 $green = substr($bgcolor, 1, 1);
[all …]
/plugin/numberedheadings/
H A Dsyntax.php46 $this->mode = substr(get_class($this), 7);
79 $level = (int) substr($match, -3, 1);
93 $text = substr($text, $dash);
98 if (substr($title, 0, 1) == '#') {
103 $part = explode(' ', substr($title, 1), 2);
111 list($number, $title) = explode(' ', substr($text, 1), 2);
118 $number = substr($text, 1, $closed -1);
119 $title = trim(substr($text, $closed + 1));
121 list($number, $title) = explode(' ', substr($text, 1), 2);
128 if ($dash > 1 && substr(
[all...]
/plugin/jukebox/id3/
H A Dmodule.audio.mp3.php95 switch (substr($CurrentDataLAMEversionString, -1)) {
434 $head4 = substr($headerstring, 0, 4);
558 if (substr($headerstring, 4 + 32, 4) == 'VBRI') {
566 $SideInfoData = substr($headerstring, 4 + 2, 32);
600 …if ((substr($headerstring, $VBRidOffset, strlen('Xing')) == 'Xing') || (substr($headerstring, $VBR…
678 if (substr($headerstring, $VBRidOffset + 120, 4) == 'LAME') {
1112 $SyncPattern1 = substr($MPEGaudioData, 0, 4);
1147 $SyncPattern1 = substr($SyncPattern1, 0, 3);
1148 $SyncPattern2 = substr($SyncPattern2, 0, 3);
1159 …if ((substr($NextSyncPattern, 1, strlen($SyncPattern1)) == $SyncPattern1) || (substr($NextSyncPatt…
[all …]
H A Dgetid3.lib.php94 $binarypointnumber = substr($binarypointnumber, 2, 1).'.'.substr($binarypointnumber, 3);
184 $exponentstring = substr($bitword, 1, 15);
325 $binstring = substr($binstring, 1);
478 $ArrayPath = substr($ArrayPath, 1);
880 if (substr($string, 0, 2) == "\xFE\xFF") {
882 $string = substr($string, 2);
896 $string = substr($string, 2);
910 $string = substr($string, 2);
924 $string = substr($string, 2);
936 $bom = substr($string, 0, 2);
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dtag.frame.inc.php61 if (substr($length_src,strlen($length_src)-1,1) == "%") {
65 $fraction = substr($length_src, 0, strlen($length_src)-1) / 100;
68 } elseif (substr($length_src,strlen($length_src)-1,1) != "*") {
81 if (substr($length_src,strlen($length_src)-1,1) == "*") {
82 $parts += max(1,substr($length_src,0,strlen($length)-1));
92 if (substr($length,strlen($length)-1,1) == "*") {
93 $values[$i] = $part_size * max(1,substr($length,0,strlen($length)-1));
/plugin/bibtex4dw/lib/
H A Dbibtexparser.php285 $char = substr($this->content, $i, 1);
398 $char = substr($this->content, $i, 1);
484 if ('@string' == strtolower(substr($entry, 0, 7))) {
490 $entry = substr(trim($m[1]), 1, -1);
597 if ('@string' == strtolower(substr($entry, 0, 7))) {
603 $this->_strings[trim($m[0])] = substr(trim($m[1]),1,-1);
605 } elseif ('@preamble' == strtolower(substr($entry, 0, 9))) {
624 if (substr($entry, $position-1, 1) == '\\') {
631 $substring = substr($entry, 0, $position);
634 if (substr(
[all...]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DNamePrettifier.php43 $this->suffix == substr($name, -1 * strlen($this->suffix))) {
44 $title = substr($title, 0, strripos($title, $this->suffix));
48 $this->prefix == substr($name, 0, strlen($this->prefix))) {
49 $title = substr($title, strlen($this->prefix));
52 if (substr($title, 0, 1) == '\\') {
53 $title = substr($title, 1);
82 if (substr($name, 0, 4) == 'test') {
83 $name = substr($name, 4);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1105 $b = substr($b, 0, $blockLength);
1120 return substr($a, 0, $n);
1248 …$this->encryptIV = substr($this->encryptIV, $len - $this->block_size) . substr($ciphertext, -$len);
1451 $iv = substr($iv, 1) . $c;
1458 … $this->encryptIV = substr($this->encryptIV, $len - $block_size) . substr($ciphertext, -$len);
1637 …$this->decryptIV = substr($this->decryptIV, $len - $this->block_size) . substr($ciphertext, -$len);
1831 … $this->decryptIV = substr($this->decryptIV, $len - $block_size) . substr($ciphertext, -$len);
1916 substr($this->newtag, 0, $length);
2097 … $encryptIV = substr($ciphertext, -$block_size) ^ substr($plaintext, -$block_size);
2618 return substr($text, 0, -$length);
[all …]
/plugin/searchpattern/
H A Dsyntax.php263 if(substr($match,-4,2) == '??'){ //if options are passed
264 $options = substr($match, 0, -4); //extract options ...
265 $match = substr($options, 0, strrpos($options,'??')).'~~'; //...
266 $options = substr($options, strrpos($options,'??')+2); //...
291 if(substr($option,1) == ""){ //no plugin defined
294 $params['call_plugin_handler'] = substr($option,1);
298 if(substr($option,1) == ""){ //if nothing more
301 elseif(substr($option,1) == ":"){ //if ':'
316 if(substr($option,1) == ""){ // if nothing more
319 elseif(substr($option,1) == ":"){ //if ':'
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Gif/
H A DImageHeader.php56 $this->m_nLeft = $this->w2i(substr($lpData, 0, 2));
57 $this->m_nTop = $this->w2i(substr($lpData, 2, 2));
58 $this->m_nWidth = $this->w2i(substr($lpData, 4, 2));
59 $this->m_nHeight = $this->w2i(substr($lpData, 6, 2));
74 if (!$this->m_colorTable->load(substr($lpData, $hdrLen), $this->m_nTableSize)) {
85 return ord(substr($str, 0, 1)) + (ord(substr($str, 1, 1)) << 8);
/plugin/publistx/bib2tpl/lib/
H A DBibTex.php284 $char = substr($this->content, $i, 1);
615 $firstchar = substr($entry, 0, 1);
616 $lastchar = substr($entry, -1, 1);
619 $entry = substr($entry, 1, -1);
623 $firstchar = substr($entry, 0, 1);
624 $lastchar = substr($entry, -1, 1);
861 $char = substr($entry, $i, 1);
886 $firstchar = substr($value, 0, 1);
887 $lastchar = substr($value, -1, 1);
898 $firstchar = substr($value, 0, 1);
[all …]
/plugin/publistf/bib2tpl/lib/
H A DBibTex.php284 $char = substr($this->content, $i, 1);
615 $firstchar = substr($entry, 0, 1);
616 $lastchar = substr($entry, -1, 1);
619 $entry = substr($entry, 1, -1);
623 $firstchar = substr($entry, 0, 1);
624 $lastchar = substr($entry, -1, 1);
861 $char = substr($entry, $i, 1);
886 $firstchar = substr($value, 0, 1);
887 $lastchar = substr($value, -1, 1);
898 $firstchar = substr($value, 0, 1);
[all …]
/plugin/publist/bib2tpl/lib/
H A DBibTex.php284 $char = substr($this->content, $i, 1);
615 $firstchar = substr($entry, 0, 1);
616 $lastchar = substr($entry, -1, 1);
619 $entry = substr($entry, 1, -1);
623 $firstchar = substr($entry, 0, 1);
624 $lastchar = substr($entry, -1, 1);
861 $char = substr($entry, $i, 1);
886 $firstchar = substr($value, 0, 1);
887 $lastchar = substr($value, -1, 1);
898 $firstchar = substr($value, 0, 1);
[all …]

12345678910>>...85