0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
core
/
Search
/
Expr
/
[
Home
]
File: Tokenizer.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: Tokenizer.php 33766 2011-04-01 19:02:16Z sylvieg $ class Search_Expr_Tokenizer { const QUOTE = '"'; const OPEN = '('; const CLOSE = ')'; function tokenize($string) { $tokens = array(); $open = false; $current = ''; $length = strlen($string); for ($i = 0; $length > $i; ++$i ) { $char = $string{$i}; if ($open ) { if ($char === self::QUOTE) { $this->addToken($tokens, $current); $open = false; } else { $current .= $char; } } else { if ($char === self::QUOTE) { $open = true; } elseif ($char === self::OPEN || $char === self::CLOSE) { $this->addToken($tokens, $current); $this->addToken($tokens, $char); } elseif (ctype_space($char)) { $this->addToken($tokens, $current); } else { $current .= $char; } } } $this->addToken($tokens, $current); return $tokens; } private function addToken(&$tokens, &$current) { if (! empty($current) ) { $tokens[] = $current; $current = ''; } } }