Home
last modified time | relevance | path

Searched full:utf8_strlen (Results 1 – 25 of 34) sorted by last modified time

12

/dokuwiki/inc/
H A Dutf8.php89 if (!function_exists('utf8_strlen')) {
91 function utf8_strlen($str)
90 function utf8_strlen($str) global() function
/plugin/siteexport/renderer/
H A Dpdf.php78 …} else if ($this->info['forceTOC'] || $this->meta['forceTOC'] || (utf8_strlen(strip_tags($this->do…
/plugin/linkback/
H A Dadmin.php207 if (utf8_strlen($excerpt) > 160) $excerpt = utf8_substr($excerpt, 0, 160).'...';
/plugin/nodetailsxhtml/
H A Drenderer.php98 } else if ( $forceToc || ($this->utf8_strlen(strip_tags($this->doc)) >= $this->getConf('documentlengthfortoc') && count($this->toc) > 1 ) ) {
114 private function utf8_strlen( $input ) { function in renderer_plugin_nodetailsxhtml
118 return utf8_strlen( $input );
/plugin/bez/struct/
H A DBezType.php115 if(utf8_strlen($lookup) < 1) return array();
/plugin/recommend/
H A Daction.php99 if (utf8_strlen($lookup) < 3) {
/plugin/data/syntax/
H A Dentry.php132 'len' => strlen($match) // not utf8_strlen
/plugin/edittable/action/
H A Deditor.php255 // fallback deprecated utf8_strlen since 2019-06-09
256 $callable = 'utf8_strlen';
/plugin/edittable/renderer/
H A Dinverse.php720 $diff = (utf8_strlen($cell['text']) + $cell['colspan'] +
746 $pos += utf8_strlen($cell['text']) + 1;
754 $pad = $target - utf8_strlen($cell['text']);
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dutf8.php136 if(!function_exists('utf8_strlen')){
151 function utf8_strlen($string) { function
215 $strlen = utf8_strlen($str); // see notes
236 if (!isset($strlen)) $strlen = utf8_strlen($str); // see notes
410 switch ( utf8_strlen($str) ) {
553 $length = utf8_strlen(substr($haystack, 0, $pos));
/plugin/discussion/
H A Dadmin.php260 if (utf8_strlen($abstract) > 160) {
/plugin/passpolicy/
H A Dhelper.php206 for ($i = 0; $i < utf8_strlen($pass) - $this->usernamecheck + 1; $i++) {
/plugin/qc/
H A Drenderer.php
/plugin/accscounter/
H A Dadmin.php101 $length = utf8_strlen($conf['metadir'] . '/_accscounter/');
107 … $page = utf8_substr($islogfile, 0, utf8_strlen($islogfile) - utf8_strlen('.number'));
H A Daction.php95 $length = utf8_strlen($conf['metadir'] . '/');
102 … $page = utf8_substr($islogfile, 0, utf8_strlen($islogfile) - utf8_strlen('.accscounternm'));
133 $length = utf8_strlen($conf['metadir'] . '/');
/plugin/amazon/
H A Dsyntax.php384 if($maxlen && utf8_strlen($string) > $maxlen){
/plugin/data-au/syntax/
H A Dentry.php114 ); // not utf8_strlen
462 $len = max($len, utf8_strlen($nudataau[count($nudataau) - 1][0]));
467 $ret .= $field[0] . str_repeat(' ', $len + 1 - utf8_strlen($field[0])) . ': ';
/plugin/sphinxsearch-was/
H A Dfunctions.php412 $max = $max - utf8_strlen($keep);
414 $len = utf8_strlen($short);
/plugin/structgroup/types/
H A DGroup.php65 if(utf8_strlen($lookup) < $this->config['autocomplete']['mininput']) return array();
/plugin/ruby/
H A Dsyntax.php49 if (utf8_strlen($this->getConf('parentheses')) > 1) {
/plugin/spellcheck/
H A Dspellcheck.php92 $result .= str_pad('',utf8_strlen($string),' ');
181 $len = utf8_strlen($word);
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js1656 //var $utf8_strlen = 'mb_strlen';
1667 //$strlen = $this->utf8_strlen; # strlen function for UTF-8.
2215 //var strlen = this.utf8_strlen;
/plugin/markdownextra/
H A Dmarkdown.php1639 var $utf8_strlen = 'mb_strlen'; variable in Markdown_Parser
1656 $strlen = $this->utf8_strlen; # strlen function for UTF-8.
1673 # Check for the availability of the function in the `utf8_strlen` property
1678 if (function_exists($this->utf8_strlen)) return;
1679 $this->utf8_strlen = create_function('$text', 'return preg_match_all(
2313 $strlen = $this->utf8_strlen;
/plugin/freechat/phpfreechat/src/proxies/
H A Dnoflood.class.php25 require_once dirname(__FILE__)."/../../lib/utf8/utf8_strlen.php";
61 $flood_nbchar += utf8_strlen($param);
/plugin/freechat/phpfreechat/lib/utf8/
H A Dutf8_strlen.php12 if (!function_exists('utf8_strlen')) {
13 function utf8_strlen($str) { function

12