Home
last modified time | relevance | path

Searched refs:substr (Results 226 – 250 of 2368) sorted by path

12345678910>>...95

/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DBarcodeFactory.php165 $r = hexdec(substr($color, 0, 2));
166 $g = hexdec(substr($color, 2, 2));
167 $b = hexdec(substr($color, 4, 2));
169 $r = hexdec(substr($color, 0, 1).substr($color, 0, 1));
170 $g = hexdec(substr($color, 1, 1).substr($color, 1, 1));
171 $b = hexdec(substr($color, 2, 1).substr($color, 2, 1));
H A DDatamatrix.php709 $cw[] = (intval(substr($data, $pos, 2)) + 130);
H A DDatamatrixFactory.php139 $r = hexdec(substr($color, 0, 2));
140 $g = hexdec(substr($color, 2, 2));
141 $b = hexdec(substr($color, 4, 2));
143 $r = hexdec(substr($color, 0, 1).substr($color, 0, 1));
144 $g = hexdec(substr($color, 1, 1).substr($color, 1, 1));
145 $b = hexdec(substr($color, 2, 1).substr($color, 2, 1));
H A DPDF417.php818 $prevseq = substr($code, $offset, ($seq[1] - $offset));
828 $prevtxtseq = substr($prevseq, $txtoffset, ($txtseq[1] - $txtoffset));
920 $rest = substr($code, 6);
921 $code = substr($code, 0, 6);
956 $rest = substr($code, 44);
957 $code = substr($code, 0, 44);
H A DPDF417Factory.php139 $r = hexdec(substr($color, 0, 2));
140 $g = hexdec(substr($color, 2, 2));
141 $b = hexdec(substr($color, 4, 2));
143 $r = hexdec(substr($color, 0, 1).substr($color, 0, 1));
144 $g = hexdec(substr($color, 1, 1).substr($color, 1, 1));
145 $b = hexdec(substr($color, 2, 1).substr($color, 2, 1));
H A DQRcode.php97 $parts[] = substr($string, 0, $split_length);
98 $string = substr($string, $split_length);
1434 $this->dataStr = substr($this->dataStr, $length);
1446 $mode = $this->identifyMode(substr($this->dataStr, $p), $this->hint);
2232 …$srctab[$y] = substr_replace($srctab[$y], ($replLen !== false)?substr($repl,0,$replLen):$repl, $x,…
H A DQRcodeFactory.php178 $r = hexdec(substr($color, 0, 2));
179 $g = hexdec(substr($color, 2, 2));
180 $b = hexdec(substr($color, 4, 2));
182 $r = hexdec(substr($color, 0, 1).substr($color, 0, 1));
183 $g = hexdec(substr($color, 1, 1).substr($color, 1, 1));
184 $b = hexdec(substr($color, 2, 1).substr($color, 2, 1));
/plugin/batchedit/
H A Dengine.php160 $currentText = substr($pageText, $pageOffset, strlen($this->originalText));
166 $before = substr($pageText, 0, $pageOffset);
167 $after = substr($pageText, $pageOffset + strlen($this->originalText));
212 $context = \dokuwiki\Utf8\PhpString::substr(substr($pageText, 0, $pageOffset), -$contextChars);
216 $context = substr($context, $match[$count - $contextLines - 1][0][1] + 1);
230 $context = \dokuwiki\Utf8\PhpString::substr(substr($pageText, $pageOffset), 0, $contextChars);
234 $context = substr($context, 0, $match[$contextLines][0][1]);
1144 $ns = substr(
[all...]
H A Dinterface.js71 var pageId = escapeId(this.id.substr(0, this.id.indexOf('#')));
H A Dinterface.php645 if (substr($label, 0, 5) == 'print') {
649 if (substr($label, 0, 4) == 'lbl_') {
H A Drequest.php193 $resolved[] = '-' . $resolver->resolveId(substr($ns, 1));
257 return substr($matches[1], 1) . $unescaped[$matches[2]];
/plugin/bbcode/
H A Dcolor.php176 $match = substr($match, 7, -1);
177 … if (preg_match('/".+?"/',$match)) $match = substr($match, 1, -1); // addition #1: unquote
H A Demail.php27 $match = trim(substr($match, 7, -8));
H A Dimage.php27 $match = trim(substr($match, 5, -6));
H A Dlink.php27 $match = substr($match, 5, -6);
28 if (preg_match('/".+?"/',$match)) $match = substr($match, 1, -1); // addition #1: unquote
44 $handler->_addCall('locallink',array(substr($url,1),$title),$pos);
H A Dolist.php33 $match = substr($match, 6, -4);
H A Dquote.php32 $match = explode('"',substr($match, 6, -1));
H A Dsize.php32 $match = substr($match, 6, -1);
33 … if (preg_match('/".+?"/',$match)) $match = substr($match, 1, -1); // addition #1: unquote
H A Dversalitas.php31 $match = substr($match, 3, -1);
/plugin/bbcodeextensions/syntax/
H A Danchor.php43 $match= substr($match, 3, -4);
H A Dclassdiv.php21 $match = explode('"',substr($match, 3, -1));
H A Dclassspan.php21 $match = explode('"',substr($match, 3, -1));
H A Dq.php17 $match= trim(substr($match, 2, -4));
/plugin/bbs/
H A Dsyntax.php30 return substr($match,5,-6);
/plugin/bez/ctl/
H A Dtasks.php85 substr($filters['original_poster'], 0, 1) === '@') {
86 $group = substr($filters['original_poster'], 1);
91 substr($filters['assignee'], 0, 1) === '@') {
92 $group = substr($filters['assignee'], 1);

12345678910>>...95