Home
last modified time | relevance | path

Searched refs:ascii (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/_test/tests/inc/
Dpageutils_clean_id.test.php98 $ascii = isset($test[2]['ascii']) ? $test[2]['ascii'] : false;
102 yield([$test[0], $test[1], $ascii, $sepchar, $deaccent, $test[2]['useslash']]);
104 yield([$test[0], $test[1], $ascii, $sepchar, $deaccent, 0]);
105 yield([$test[0], $test[1], $ascii, $sepchar, $deaccent, 1]);
114 * @param bool $ascii
119 function testCleanId($input, $expected, $ascii, $sepchar, $deaccent, $useslash) argument
127 $result = cleanID($input, $ascii);
/dokuwiki/inc/Utf8/
DClean.php65 $ascii = '';
69 $ascii .= $str[$i];
72 return $ascii;
/dokuwiki/inc/
Dpageutils.php121 * @param boolean $ascii Force ASCII
124 function cleanID($raw_id, $ascii = false) argument
133 if (!$ascii && isset($cache[(string)$raw_id])) {
151 if ($conf['deaccent'] == 2 || $ascii) $id = Clean::romanize($id);
152 if ($conf['deaccent'] || $ascii) $id = Clean::deaccent($id, -1);
157 if ($ascii) $id = Clean::strip($id);
166 if (!$ascii) $cache[(string)$raw_id] = $id;
DJpegMeta.php3209 $ascii = '';
3229 $ascii .= '<';
3231 $ascii .= '>';
3233 $ascii .= ' ';
3235 $ascii .= chr($c);
3237 $ascii .= '.';
3244 echo ': ' . $ascii . "<br>\n";
3245 $ascii = '';
3249 if ($ascii != '') {
3257 echo ': ' . $ascii . "<br>\n";