Home
last modified time | relevance | path

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

/dokuwiki/inc/
H A Dcommon.php1201 * Returns the raw Wiki Text in three slices.
1213 * @return string[] with three slices
1225 $slices = [];
1226 $slices[0] = substr($text, 0, $from);
1227 $slices[1] = substr($text, $from, $to - $from);
1228 $slices[2] = substr($text, $to);
1229 return $slices;
1233 * Joins wiki text slices
1235 * function to join the text slices.