Source for file Tokenizer.php
Documentation is available at Tokenizer.php
* $Id: From.php 1080 2007-02-10 18:17:08Z romanb $
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @version $Revision: 1080 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @param string $e1 the first bracket, usually '('
* @param string $e2 the second bracket, usually ')'
public static function bracketTrim($str, $e1 =
'(', $e2 =
')')
if (substr($str, 0, 1) ===
$e1 &&
substr($str, -
1) ===
$e2) {
* $str = (age < 20 AND age > 18) AND email LIKE 'John@example.com'
* array("(age < 20 AND age > 18)",
* "email LIKE 'John@example.com'")
* @param string $d the delimeter which explodes the string
* @param string $e1 the first bracket, usually '('
* @param string $e2 the second bracket, usually ')'
public static function bracketExplode($str, $d =
' ', $e1 =
'(', $e2 =
')')
foreach($a as $key=>
$val) {
$term[$i] .=
$d .
trim($val);
* $str = email LIKE 'John@example.com'
* array("email", "LIKE", "'John@example.com'")
* @param string $d the delimeter which explodes the string
foreach ($a as $key =>
$val) {
$term[$i] .=
$d .
trim($val);
* explodes a string into array using custom brackets and
* $str = "(age < 20 AND age > 18) AND name LIKE 'John Doe'"
* array('(age < 20 AND age > 18)',
* @param string $d the delimeter which explodes the string
* @param string $e1 the first bracket, usually '('
* @param string $e2 the second bracket, usually ')'
public static function sqlExplode($str, $d =
' ', $e1 =
'(', $e2 =
')')
$split =
'§(' .
implode('|', $d) .
')§';
foreach ($str as $key =>
$val) {
if (strpos($term[$i], '(') !==
false) {
$term[$i] .=
$d .
trim($val);
if (strpos($term[$i], '(') !==
false) {
* explodes a string into array using custom brackets and
* $str = "(age < 20 AND age > 18) AND name LIKE 'John Doe'"
* array('(age < 20 AND age > 18)',
* @param string $d the delimeter which explodes the string
* @param string $e1 the first bracket, usually '('
* @param string $e2 the second bracket, usually ')'
public static function clauseExplode($str, array $d, $e1 =
'(', $e2 =
')')
$split =
'§(' .
implode('|', $d) .
')§';
$str =
preg_split($split, $str, -
1, PREG_SPLIT_DELIM_CAPTURE);
foreach ($str as $key =>
$val) {
if (isset
($term[($i -
1)]) &&
! is_array($term[($i -
1)])) {
$term[($i -
1)] =
array($term[($i -
1)], $val);
$term[$i] .=
$str[($key -
1)] .
$val;
if (strpos($term[$i], '(') !==
false) {
$term[$i -
1] =
array($term[$i -
1], '');