本文整理汇总了PHP中GeSHi::_optimize_regexp_list_tokens_to_string方法的典型用法代码示例。如果您正苦于以下问题:PHP GeSHi::_optimize_regexp_list_tokens_to_string方法的具体用法?PHP GeSHi::_optimize_regexp_list_tokens_to_string怎么用?PHP GeSHi::_optimize_regexp_list_tokens_to_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GeSHi
的用法示例。
在下文中一共展示了GeSHi::_optimize_regexp_list_tokens_to_string方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _optimize_regexp_list_tokens_to_string
/**
* this function creates the appropriate regexp string of an token array
* you should not call this function directly, @see GeSHi::optimize_regexp_list().
*
* @param &$tokens array of tokens
* @param $recursed bool to know wether we recursed or not
* @return string
* @author Milian Wolff <mail@milianw.de>
* @since 1.0.8
*/
function _optimize_regexp_list_tokens_to_string(&$tokens, $recursed = false)
{
$list = '';
foreach ($tokens as $token => $sub_tokens) {
$list .= $token;
$close_entry = isset($sub_tokens['']);
unset($sub_tokens['']);
if (!empty($sub_tokens)) {
$list .= '(?:' . GeSHi::_optimize_regexp_list_tokens_to_string($sub_tokens, true) . ')';
if ($close_entry) {
// make sub_tokens optional
$list .= '?';
}
}
$list .= '|';
}
if (!$recursed) {
// do some optimizations
// common trailing strings
// BUGGY!
//$list = preg_replace_callback('#(?<=^|\:|\|)\w+?(\w+)(?:\|.+\1)+(?=\|)#', create_function(
// '$matches', 'return "(?:" . preg_replace("#" . preg_quote($matches[1], "#") . "(?=\||$)#", "", $matches[0]) . ")" . $matches[1];'), $list);
// (?:p)? => p?
$list = preg_replace('#\\(\\?\\:(.)\\)\\?#', '\\1?', $list);
// (?:a|b|c|d|...)? => [abcd...]?
// TODO: a|bb|c => [ac]|bb
static $callback_2;
if (!isset($callback_2)) {
$callback_2 = create_function('$matches', 'return "[" . str_replace("|", "", $matches[1]) . "]";');
}
$list = preg_replace_callback('#\\(\\?\\:((?:.\\|)+.)\\)#', $callback_2, $list);
}
// return $list without trailing pipe
return substr($list, 0, -1);
}