Home
last modified time | relevance | path

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

123456

/dokuwiki/inc/
H A Dpageutils.php93 $id = substr($id, 0, -1);
182 return substr((string)$id, 0, $pos);
199 return substr($id, $pos + 1);
465 $name = substr($id, 0, -1 * strlen($ext[0]) - 1);
H A Dindexer.php311 $i = substr($f, 1, -4);
H A DJpegMeta.php148 $info = $this->getIPTCField(substr($field,5));
150 $info = $this->getExifField(substr($field,5));
152 $info = $this->getXmpField(substr($field,4));
154 $info = $this->getFileField(substr($field,5));
156 $info = $this->getDateField(substr($field,5));
207 return $this->setIPTCField(substr($field,5),$value);
209 return $this->setExifField(substr($field,5),$value);
227 return $this->deleteIPTCField(substr($field,5));
229 return $this->deleteExifField(substr($field,5));
724 $aux = substr(
[all...]
H A Dinit.php466 } elseif (substr($_SERVER['SCRIPT_NAME'], -4) == '.php') {
468 } elseif (substr($_SERVER['PHP_SELF'], -4) == '.php') {
569 return strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
H A Dsearch.php
H A DSafeFN.class.php162 $unicode[] = 32 + (int)base_convert(substr($sub, 1), 36, 10);
/dokuwiki/vendor/composer/
H A DClassLoader.php501 $subPath = substr($subPath, 0, $lastPos);
504 $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
524 $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
525 . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
H A DInstalledVersions.php269 if (substr(__DIR__, -8, 1) !== 'C') {
344 if (substr(__DIR__, -8, 1) !== 'C') {
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DZip.php351 $c_block = substr($c_block, 0, -4);
358 $c_block = substr($c_block, 2);
421 $data = substr($data, 2, -4); // strip compression headers
621 if (substr($header['filename'], -1) == '/') {
686 $header = substr($header, 4);
687 $value = substr($header, 0, $set['len']);
688 $header = substr($header, $set['len']);
694 $extra['utf8comment'] = substr($extra[0x7075], 5); // strip version and crc
697 $extra['utf8path'] = substr($extra[0x7075], 5); // strip version and crc
H A DTar.php339 $this->writebytes(pack("a512", substr($data, $s, 512)));
542 $this->writebytes(pack("a512", substr($name, $s, 512)));
544 $name = substr($name, 0, 100); // cut off name
707 if (substr($file, -3) == '.gz' || substr($file, -4) == '.tgz') {
709 } elseif (substr($file, -4) == '.bz2' || substr($file, -4) == '.tbz') {
H A DFileInfo.php328 if (substr($filename, 0, $striplen) == $strip) {
329 $filename = substr($filename, $striplen);
/dokuwiki/inc/File/
H A DResolver.php57 $id = $this->contextID . ':' . substr($id, 1);
/dokuwiki/inc/Ui/
H A DIndex.php83 $base = substr($base, strrpos($base, ':') + 1);
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php123 $classname = substr($obfuscatedProp, 1, -strlen($obfuscatedPropTail));
/dokuwiki/inc/Extension/
H A DRemotePlugin.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php679 return substr($t, 0, $maskLen);
H A DHash.php295 $this->length = abs(substr($hash, -3)) >> 3;
307 $hash = substr($hash, 0, -3);
386 if (in_array(substr($hash, 0, 5), ['sha3-', 'shake', 'kecca'])) {
389 if (version_compare(PHP_VERSION, '7.1.0') < 0 || substr($hash, 0, 5) != 'sha3-') {
497 substr($t, unpack('C', $index)[1] * $taglen, $taglen) :
498 substr($t, 0, $taglen);
531 $L1Key_i = substr($L1Key, $i * 16, 1024);
532 $L2Key_i = substr($L2Key, $i * 24, 24);
533 $L3Key1_i = substr($L3Key1, $i * 64, 64);
534 $L3Key2_i = substr(
[all...]
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php229 $first = (int) substr(array_shift($list), 0, 10);
230 $last = (int) substr(array_pop($list), 0, 10);
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DKMLCreator.php103 return substr($fileInfo["basename"], 0, -(strlen($fileInfo["extension"]) + 1)).".kml";
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php1558 $this->set_language(self::get_language_name_from_extension(substr(strrchr($file_name, '.'), 1), $lookup));
2295 1 => substr($code, $i, $next_match_pos - $i)
2321 substr($code, $i, $next_match_pointer['open_strlen']) == $next_match_pointer['open'])) {
2342 $parts[$k][1] = substr($code, $next_match_pos);
2346 $parts[$k][1] = substr($code, $next_match_pos, $i - $next_match_pos);
2540 if ($testchar === substr($part, $i, strlen($testchar)) &&
2551 if ($testchar === substr($part, $i, strlen($testchar))) {
2652 $string .= $this->hsc(substr($part, $start, $es_pos - $start));
2675 $es_char_m = mb_substr(substr($part, $es_pos+1, 16), 0, 1, $this->encoding);
2703 $string .= $this->hsc(substr(
[all...]
/dokuwiki/inc/Action/
H A DExport.php52 $mode = substr($this->actionname, 7);
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php608 if (strtolower(substr($method, 0, 5)) === 'date_') {
766 $output .= substr($string, $position, $pos - $position);
794 $output .= substr($string, $position);
/dokuwiki/inc/parser/
H A Dhandler.php193 $key = substr($match[0], 0, $equal_sign);
194 $value = substr($match[0], $equal_sign + 1);
876 [substr($link[0], 1), $link[1]],
1104 $src = substr($link[0], 0, $pos);
1105 $param = substr($link[0], $pos + 1);
/dokuwiki/lib/scripts/
H A Dmedia.js58 $link[0].search.substr(1) + '&call=medians',
304 text = text.substr(text.lastIndexOf('/') + 1);
305 text = text.substr(text.lastIndexOf('\\') + 1);
344 params += $link[0].search.substr(1);
366 action = $form[0].action.substr(i + 1);
427 params += $link[0].search.substr(1);
695 id = $link.attr('id').substr(2);
714 ext = id.substr(dot);
/dokuwiki/inc/Ui/Media/
H A DDisplayRow.php78 if (PhpString::strlen($d) > 250) $d = PhpString::substr($d, 0, 250) . '...';

123456