本文整理匯總了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);
}