diff --git a/lib/Doctrine/Tokenizer.php b/lib/Doctrine/Tokenizer.php
index 8170fd5ec..26e643b81 100644
--- a/lib/Doctrine/Tokenizer.php
+++ b/lib/Doctrine/Tokenizer.php
@@ -32,15 +32,6 @@
*/
class Doctrine_Tokenizer
{
- public function __construct()
- {
-
- }
- public function tokenize()
- {
-
- }
-
/**
* trims brackets
*
diff --git a/tests/SearchTestCase.php b/tests/SearchTestCase.php
index a7c5e60ca..33dd78b60 100644
--- a/tests/SearchTestCase.php
+++ b/tests/SearchTestCase.php
@@ -156,4 +156,22 @@ class Doctrine_Search_TestCase extends Doctrine_UnitTestCase
}
+
+ public function testThrowExceptionIfInvalidTable()
+ {
+ try{
+ $oQuery = new Doctrine_Search_Query(new Doctrine_Query());
+ $this->fail("Should throw exception");
+ }catch(Doctrine_Search_Exception $exception){
+ $this->assertEqual($exception->getMessage(), "Invalid argument type. Expected instance of Doctrine_Table.");
+ }
+ }
+
+
+ public function testGenerateSearchQueryForWeightedSearch()
+ {
+ $oQuery = new Doctrine_Search_Query("SearchTest");
+ $oQuery->query("^test");
+ $this->assertEqual($oQuery->getSql(), "SELECT SUM(sub_relevance) AS relevance, id FROM WHERE keyword = ? GROUP BY id ORDER BY relevance");
+ }
}
diff --git a/tests/TokenizerTestCase.php b/tests/TokenizerTestCase.php
index 85b2cdc0d..ff789dc7b 100644
--- a/tests/TokenizerTestCase.php
+++ b/tests/TokenizerTestCase.php
@@ -109,4 +109,11 @@ class Doctrine_Tokenizer_TestCase extends Doctrine_UnitTestCase
$this->assertEqual($a, array('rdbms (dbal OR database)'));
}
+
+
+ public function testQuoteExplodedShouldQuoteArray()
+ {
+ $term = Doctrine_Tokenizer::quoteExplode("test", array("'test'", "test2"));
+ $this->assertEqual($term[0], "test");
+ }
}
diff --git a/tests/coverage/Doctrine_Connection_Sqlite.html b/tests/coverage/Doctrine_Connection_Sqlite.html
index fa4dcd819..afec04ed2 100644
--- a/tests/coverage/Doctrine_Connection_Sqlite.html
+++ b/tests/coverage/Doctrine_Connection_Sqlite.html
@@ -16,7 +16,7 @@
/*
|
3 |
- * $Id: Sqlite.php 2963 2007-10-21 06:23:59Z Jonathan.Wage $
+ | * $Id: Sqlite.php 3032 2007-10-29 19:50:16Z meus $
|
4 |
*
@@ -103,7 +103,7 @@
| * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
|
32 |
- * @version $Revision: 2963 $
+ | * @version $Revision: 3032 $
|
33 |
* @link www.phpdoctrine.com
diff --git a/tests/coverage/Doctrine_Hydrate.html b/tests/coverage/Doctrine_Hydrate.html
index f9f893d85..6471a4418 100644
--- a/tests/coverage/Doctrine_Hydrate.html
+++ b/tests/coverage/Doctrine_Hydrate.html
@@ -16,7 +16,7 @@
| /*
|
3 |
- * $Id: Hydrate.php 3000 2007-10-24 13:44:58Z ppetermann $
+ | * $Id: Hydrate.php 3032 2007-10-29 19:50:16Z meus $
|
4 |
*
@@ -103,7 +103,7 @@
| * @since 1.0
|
32 |
- * @version $Revision: 3000 $
+ | * @version $Revision: 3032 $
|
33 |
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
diff --git a/tests/coverage/Doctrine_Query_Condition.html b/tests/coverage/Doctrine_Query_Condition.html
index 92a32f0db..82d06afd9 100644
--- a/tests/coverage/Doctrine_Query_Condition.html
+++ b/tests/coverage/Doctrine_Query_Condition.html
@@ -16,7 +16,7 @@
| /*
|
3 |
- * $Id: Condition.php 2702 2007-10-03 21:43:22Z Jonathan.Wage $
+ | * $Id: Condition.php 3032 2007-10-29 19:50:16Z meus $
|
4 |
*
@@ -97,7 +97,7 @@
| * @since 1.0
|
30 |
- * @version $Revision: 2702 $
+ | * @version $Revision: 3032 $
|
31 |
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
diff --git a/tests/coverage/Doctrine_Query_Having.html b/tests/coverage/Doctrine_Query_Having.html
index a904a1902..bdc1b5077 100644
--- a/tests/coverage/Doctrine_Query_Having.html
+++ b/tests/coverage/Doctrine_Query_Having.html
@@ -16,7 +16,7 @@
| /*
|
3 |
- * $Id: Having.php 2963 2007-10-21 06:23:59Z Jonathan.Wage $
+ | * $Id: Having.php 3032 2007-10-29 19:50:16Z meus $
|
4 |
*
@@ -97,7 +97,7 @@
| * @since 1.0
|
30 |
- * @version $Revision: 2963 $
+ | * @version $Revision: 3032 $
|
31 |
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
diff --git a/tests/coverage/Doctrine_Query_Part.html b/tests/coverage/Doctrine_Query_Part.html
index c1b67ebff..f66283545 100644
--- a/tests/coverage/Doctrine_Query_Part.html
+++ b/tests/coverage/Doctrine_Query_Part.html
@@ -16,7 +16,7 @@
| /*
|
3 |
- * $Id: Part.php 2963 2007-10-21 06:23:59Z Jonathan.Wage $
+ | * $Id: Part.php 3032 2007-10-29 19:50:16Z meus $
|
4 |
*
@@ -97,7 +97,7 @@
| * @since 1.0
|
30 |
- * @version $Revision: 2963 $
+ | * @version $Revision: 3032 $
|
31 |
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
diff --git a/tests/coverage/Doctrine_RawSql.html b/tests/coverage/Doctrine_RawSql.html
index 686b358be..9f2dd8f22 100644
--- a/tests/coverage/Doctrine_RawSql.html
+++ b/tests/coverage/Doctrine_RawSql.html
@@ -16,7 +16,7 @@
| /*
|
3 |
- * $Id: RawSql.php 2963 2007-10-21 06:23:59Z Jonathan.Wage $
+ | * $Id: RawSql.php 3032 2007-10-29 19:50:16Z meus $
|
4 |
*
@@ -97,7 +97,7 @@
| * @since 1.0
|
30 |
- * @version $Revision: 2963 $
+ | * @version $Revision: 3032 $
|
31 |
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
diff --git a/tests/coverage/Doctrine_RawSql_Exception.html b/tests/coverage/Doctrine_RawSql_Exception.html
new file mode 100644
index 000000000..0cf53f43e
--- /dev/null
+++ b/tests/coverage/Doctrine_RawSql_Exception.html
@@ -0,0 +1,113 @@
+
+
+ Coverage for Doctrine_RawSql_Exception
+
+
+Coverage for Doctrine_RawSql_ExceptionBack to coverage report
+1 |
+<?php
+ |
+2 |
+/*
+ |
+3 |
+ * $Id: Exception.php 2702 2007-10-03 21:43:22Z Jonathan.Wage $
+ |
+4 |
+ *
+ |
+5 |
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ |
+6 |
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ |
+7 |
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ |
+8 |
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ |
+9 |
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ |
+10 |
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ |
+11 |
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ |
+12 |
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ |
+13 |
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ |
+14 |
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ |
+15 |
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ |
+16 |
+ *
+ |
+17 |
+ * This software consists of voluntary contributions made by many individuals
+ |
+18 |
+ * and is licensed under the LGPL. For more information, see
+ |
+19 |
+ * <http://www.phpdoctrine.com>.
+ |
+20 |
+ */
+ |
+21 |
+Doctrine::autoload('Doctrine_Exception');
+ |
+22 |
+/**
+ |
+23 |
+ * Doctrine_RawSql_Exception
+ |
+24 |
+ *
+ |
+25 |
+ * @package Doctrine
+ |
+26 |
+ * @subpackage RawSql
+ |
+27 |
+ * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
+ |
+28 |
+ * @link www.phpdoctrine.com
+ |
+29 |
+ * @since 1.0
+ |
+30 |
+ * @version $Revision: 2702 $
+ |
+31 |
+ * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
+ |
+32 |
+ */
+ |
+33 |
+class Doctrine_RawSql_Exception extends Doctrine_Exception
+ |
+34 |
+{ } |
+
\ No newline at end of file
diff --git a/tests/coverage/Doctrine_Record.html b/tests/coverage/Doctrine_Record.html
index 299a9e238..e20b7311b 100644
--- a/tests/coverage/Doctrine_Record.html
+++ b/tests/coverage/Doctrine_Record.html
@@ -16,7 +16,7 @@
| /*
|
3 |
- * $Id: Record.php 3005 2007-10-25 14:21:25Z Jonathan.Wage $
+ | * $Id: Record.php 3031 2007-10-29 19:26:22Z bschussek $
|
4 |
*
@@ -103,7 +103,7 @@
| * @since 1.0
|
32 |
- * @version $Revision: 3005 $
+ | * @version $Revision: 3031 $
|
33 |
*/
@@ -1369,7 +1369,7 @@
| {
|
454 |
- $this->_values = $this->cleanData($data);
+ | $this->_values = array_merge($this->_values, $this->cleanData($data));
|
455 |
$this->_data = array_merge($this->_data, $data);
diff --git a/tests/coverage/Doctrine_Search_Exception.html b/tests/coverage/Doctrine_Search_Exception.html
new file mode 100644
index 000000000..af4b90476
--- /dev/null
+++ b/tests/coverage/Doctrine_Search_Exception.html
@@ -0,0 +1,113 @@
+
+
+ Coverage for Doctrine_Search_Exception
+
+
+Coverage for Doctrine_Search_ExceptionBack to coverage report
+1 |
+<?php
+ |
+2 |
+/*
+ |
+3 |
+ * $Id$
+ |
+4 |
+ *
+ |
+5 |
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ |
+6 |
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ |
+7 |
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ |
+8 |
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ |
+9 |
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ |
+10 |
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ |
+11 |
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ |
+12 |
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ |
+13 |
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ |
+14 |
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ |
+15 |
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ |
+16 |
+ *
+ |
+17 |
+ * This software consists of voluntary contributions made by many individuals
+ |
+18 |
+ * and is licensed under the LGPL. For more information, see
+ |
+19 |
+ * <http://www.phpdoctrine.com>.
+ |
+20 |
+ */
+ |
+21 |
+Doctrine::autoload('Doctrine_Exception');
+ |
+22 |
+/**
+ |
+23 |
+ * Doctrine_Search_Exception
+ |
+24 |
+ *
+ |
+25 |
+ * @package Doctrine
+ |
+26 |
+ * @subpackage Search
+ |
+27 |
+ * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
+ |
+28 |
+ * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
+ |
+29 |
+ * @version $Revision$
+ |
+30 |
+ * @link www.phpdoctrine.com
+ |
+31 |
+ * @since 1.0
+ |
+32 |
+ */
+ |
+33 |
+class Doctrine_Search_Exception extends Doctrine_Exception
+ |
+34 |
+{ } |
+
\ No newline at end of file
diff --git a/tests/coverage/Doctrine_Search_Query.html b/tests/coverage/Doctrine_Search_Query.html
index 245ff72eb..e7acabe6c 100644
--- a/tests/coverage/Doctrine_Search_Query.html
+++ b/tests/coverage/Doctrine_Search_Query.html
@@ -178,7 +178,7 @@
| if ( ! $table instanceof Doctrine_Table) {
|
57 |
- throw new Doctrine_Search_Exception('Invalid argument type. Expected instance of Doctrine_Table.');
+ | throw new Doctrine_Search_Exception('Invalid argument type. Expected instance of Doctrine_Table.');
|
58 |
}
@@ -250,16 +250,16 @@
| // organize terms according weights
|
81 |
- $weighted = true;
+ | $weighted = true;
|
82 |
|
83 |
- $select = 'SELECT SUM(sub_relevance) AS relevance, ' . $foreignId;
+ | $select = 'SELECT SUM(sub_relevance) AS relevance, ' . $foreignId;
|
84 |
- $from = 'FROM ' ;
+ | $from = 'FROM ' ;
|
85 |
}
diff --git a/tests/coverage/Doctrine_Tokenizer.html b/tests/coverage/Doctrine_Tokenizer.html
index 6921424c3..f218fec02 100644
--- a/tests/coverage/Doctrine_Tokenizer.html
+++ b/tests/coverage/Doctrine_Tokenizer.html
@@ -112,867 +112,840 @@
| {
|
35 |
- public function __construct()
+ | /**
|
36 |
- {
- |
-37 |
-
- |
-38 |
- }
- |
-39 |
- public function tokenize()
- |
-40 |
- {
- |
-41 |
-
- |
-42 |
- }
- |
-43 |
-
- |
-44 |
- /**
- |
-45 |
* trims brackets
|
-46 |
+
37 |
*
|
-47 |
+
38 |
* @param string $str
|
-48 |
+
39 |
* @param string $e1 the first bracket, usually '('
|
-49 |
+
40 |
* @param string $e2 the second bracket, usually ')'
|
-50 |
+
41 |
*/
|
-51 |
+
42 |
public static function bracketTrim($str, $e1 = '(', $e2 = ')')
|
-52 |
+
43 |
{
|
-53 |
+
44 |
if (substr($str, 0, 1) === $e1 && substr($str, -1) === $e2) {
|
-54 |
+
45 |
return substr($str, 1, -1);
|
-55 |
+
46 |
} else {
|
-56 |
+
47 |
return $str;
|
-57 |
+
48 |
}
|
-58 |
+
49 |
}
|
-59 |
+
50 |
|
-60 |
+
51 |
/**
|
-61 |
+
52 |
* bracketExplode
|
-62 |
+
53 |
*
|
-63 |
+
54 |
* example:
|
-64 |
+
55 |
*
|
-65 |
+
56 |
* parameters:
|
-66 |
+
57 |
* $str = (age < 20 AND age > 18) AND email LIKE 'John@example.com'
|
-67 |
+
58 |
* $d = ' AND '
|
-68 |
+
59 |
* $e1 = '('
|
-69 |
+
60 |
* $e2 = ')'
|
+61 |
+ *
+ |
+62 |
+ * would return an array:
+ |
+63 |
+ * array("(age < 20 AND age > 18)",
+ |
+64 |
+ * "email LIKE 'John@example.com'")
+ |
+65 |
+ *
+ |
+66 |
+ * @param string $str
+ |
+67 |
+ * @param string $d the delimeter which explodes the string
+ |
+68 |
+ * @param string $e1 the first bracket, usually '('
+ |
+69 |
+ * @param string $e2 the second bracket, usually ')'
+ |
70 |
*
|
71 |
- * would return an array:
- |
-72 |
- * array("(age < 20 AND age > 18)",
- |
-73 |
- * "email LIKE 'John@example.com'")
- |
-74 |
- *
- |
-75 |
- * @param string $str
- |
-76 |
- * @param string $d the delimeter which explodes the string
- |
-77 |
- * @param string $e1 the first bracket, usually '('
- |
-78 |
- * @param string $e2 the second bracket, usually ')'
- |
-79 |
- *
- |
-80 |
*/
|
-81 |
+
72 |
public static function bracketExplode($str, $d = ' ', $e1 = '(', $e2 = ')')
|
-82 |
+
73 |
{
|
-83 |
+
74 |
if (is_array($d)) {
|
-84 |
+
75 |
$a = preg_split('/('.implode('|', $d).')/', $str);
|
-85 |
+
76 |
$d = stripslashes($d[0]);
|
-86 |
+
77 |
} else {
|
-87 |
+
78 |
$a = explode($d, $str);
|
-88 |
+
79 |
}
|
-89 |
+
80 |
|
-90 |
+
81 |
$i = 0;
|
-91 |
+
82 |
$term = array();
|
-92 |
+
83 |
foreach($a as $key=>$val) {
|
-93 |
+
84 |
if (empty($term[$i])) {
|
-94 |
+
85 |
$term[$i] = trim($val);
|
-95 |
+
86 |
$s1 = substr_count($term[$i], $e1);
|
-96 |
+
87 |
$s2 = substr_count($term[$i], $e2);
|
-97 |
+
88 |
|
-98 |
+
89 |
if ($s1 == $s2) {
|
-99 |
+
90 |
$i++;
|
-100 |
+
91 |
}
|
-101 |
+
92 |
} else {
|
-102 |
+
93 |
$term[$i] .= $d . trim($val);
|
-103 |
+
94 |
$c1 = substr_count($term[$i], $e1);
|
-104 |
+
95 |
$c2 = substr_count($term[$i], $e2);
|
-105 |
+
96 |
|
-106 |
+
97 |
if ($c1 == $c2) {
|
-107 |
+
98 |
$i++;
|
-108 |
+
99 |
}
|
-109 |
+
100 |
}
|
-110 |
+
101 |
}
|
-111 |
+
102 |
return $term;
|
-112 |
+
103 |
}
|
-113 |
+
104 |
|
-114 |
+
105 |
/**
|
-115 |
+
106 |
* quoteExplode
|
+107 |
+ *
+ |
+108 |
+ * example:
+ |
+109 |
+ *
+ |
+110 |
+ * parameters:
+ |
+111 |
+ * $str = email LIKE 'John@example.com'
+ |
+112 |
+ * $d = ' AND '
+ |
+113 |
+ *
+ |
+114 |
+ * would return an array:
+ |
+115 |
+ * array("email", "LIKE", "'John@example.com'")
+ |
116 |
*
|
117 |
- * example:
- |
-118 |
- *
- |
-119 |
- * parameters:
- |
-120 |
- * $str = email LIKE 'John@example.com'
- |
-121 |
- * $d = ' AND '
- |
-122 |
- *
- |
-123 |
- * would return an array:
- |
-124 |
- * array("email", "LIKE", "'John@example.com'")
- |
-125 |
- *
- |
-126 |
* @param string $str
|
-127 |
+
118 |
* @param string $d the delimeter which explodes the string
|
-128 |
+
119 |
*/
|
-129 |
+
120 |
public static function quoteExplode($str, $d = ' ')
|
-130 |
+
121 |
{
|
-131 |
+
122 |
if (is_array($d)) {
|
-132 |
- $a = preg_split('/('.implode('|', $d).')/', $str);
+ |
123 |
+ $a = preg_split('/('.implode('|', $d).')/', $str);
|
-133 |
- $d = stripslashes($d[0]);
+ |
124 |
+ $d = stripslashes($d[0]);
|
-134 |
- } else {
+ |
125 |
+ } else {
|
-135 |
+
126 |
$a = explode($d, $str);
|
-136 |
+
127 |
}
|
-137 |
+
128 |
|
-138 |
+
129 |
$i = 0;
|
-139 |
+
130 |
$term = array();
|
-140 |
+
131 |
foreach ($a as $key => $val) {
|
-141 |
+
132 |
if (empty($term[$i])) {
|
-142 |
+
133 |
$term[$i] = trim($val);
|
-143 |
+
134 |
|
-144 |
+
135 |
if ( ! (substr_count($term[$i], "'") & 1)) {
|
-145 |
+
136 |
$i++;
|
-146 |
+
137 |
}
|
-147 |
+
138 |
} else {
|
-148 |
+
139 |
$term[$i] .= $d . trim($val);
|
-149 |
+
140 |
|
-150 |
+
141 |
if ( ! (substr_count($term[$i], "'") & 1)) {
|
-151 |
+
142 |
$i++;
|
-152 |
+
143 |
}
|
-153 |
+
144 |
}
|
-154 |
+
145 |
}
|
-155 |
+
146 |
return $term;
|
-156 |
+
147 |
}
|
-157 |
+
148 |
|
-158 |
+
149 |
/**
|
-159 |
+
150 |
* sqlExplode
|
-160 |
+
151 |
*
|
-161 |
+
152 |
* explodes a string into array using custom brackets and
|
-162 |
+
153 |
* quote delimeters
|
+154 |
+ *
+ |
+155 |
+ *
+ |
+156 |
+ * example:
+ |
+157 |
+ *
+ |
+158 |
+ * parameters:
+ |
+159 |
+ * $str = "(age < 20 AND age > 18) AND name LIKE 'John Doe'"
+ |
+160 |
+ * $d = ' '
+ |
+161 |
+ * $e1 = '('
+ |
+162 |
+ * $e2 = ')'
+ |
163 |
*
|
164 |
- *
- |
-165 |
- * example:
- |
-166 |
- *
- |
-167 |
- * parameters:
- |
-168 |
- * $str = "(age < 20 AND age > 18) AND name LIKE 'John Doe'"
- |
-169 |
- * $d = ' '
- |
-170 |
- * $e1 = '('
- |
-171 |
- * $e2 = ')'
- |
-172 |
- *
- |
-173 |
* would return an array:
|
-174 |
+
165 |
* array('(age < 20 AND age > 18)',
|
-175 |
+
166 |
* 'name',
|
-176 |
+
167 |
* 'LIKE',
|
-177 |
+
168 |
* 'John Doe')
|
-178 |
+
169 |
*
|
-179 |
+
170 |
* @param string $str
|
-180 |
+
171 |
* @param string $d the delimeter which explodes the string
|
-181 |
+
172 |
* @param string $e1 the first bracket, usually '('
|
-182 |
+
173 |
* @param string $e2 the second bracket, usually ')'
|
-183 |
+
174 |
*
|
-184 |
+
175 |
* @return array
|
-185 |
+
176 |
*/
|
-186 |
+
177 |
public static function sqlExplode($str, $d = ' ', $e1 = '(', $e2 = ')')
|
-187 |
+
178 |
{
|
-188 |
+
179 |
if ($d == ' ') {
|
-189 |
+
180 |
$d = array(' ', '\s');
|
-190 |
+
181 |
}
|
-191 |
+
182 |
if (is_array($d)) {
|
-192 |
+
183 |
$d = array_map('preg_quote', $d);
|
-193 |
+
184 |
|
-194 |
+
185 |
if (in_array(' ', $d)) {
|
-195 |
+
186 |
$d[] = '\s';
|
-196 |
+
187 |
}
|
-197 |
+
188 |
|
-198 |
+
189 |
$split = '§(' . implode('|', $d) . ')§';
|
+190 |
+
+ |
+191 |
+ $str = preg_split($split, $str);
+ |
+192 |
+ $d = stripslashes($d[0]);
+ |
+193 |
+ } else {
+ |
+194 |
+ $str = explode($d, $str);
+ |
+195 |
+ }
+ |
+196 |
+
+ |
+197 |
+ $i = 0;
+ |
+198 |
+ $term = array();
+ |
199 |
|
200 |
- $str = preg_split($split, $str);
- |
-201 |
- $d = stripslashes($d[0]);
- |
-202 |
- } else {
- |
-203 |
- $str = explode($d, $str);
- |
-204 |
- }
- |
-205 |
-
- |
-206 |
- $i = 0;
- |
-207 |
- $term = array();
- |
-208 |
-
- |
-209 |
foreach ($str as $key => $val) {
|
-210 |
+
201 |
if (empty($term[$i])) {
|
-211 |
+
202 |
$term[$i] = trim($val);
|
-212 |
+
203 |
|
-213 |
+
204 |
$s1 = substr_count($term[$i], $e1);
|
-214 |
+
205 |
$s2 = substr_count($term[$i], $e2);
|
-215 |
+
206 |
|
-216 |
+
207 |
if (strpos($term[$i], '(') !== false) {
|
-217 |
+
208 |
if ($s1 == $s2) {
|
-218 |
+
209 |
$i++;
|
-219 |
+
210 |
}
|
-220 |
+
211 |
} else {
|
-221 |
+
212 |
if ( ! (substr_count($term[$i], "'") & 1) &&
|
-222 |
+
213 |
! (substr_count($term[$i], "\"") & 1)) {
|
-223 |
+
214 |
$i++;
|
-224 |
+
215 |
}
|
-225 |
+
216 |
}
|
-226 |
+
217 |
} else {
|
-227 |
+
218 |
$term[$i] .= $d . trim($val);
|
-228 |
+
219 |
$c1 = substr_count($term[$i], $e1);
|
-229 |
+
220 |
$c2 = substr_count($term[$i], $e2);
|
-230 |
+
221 |
|
-231 |
+
222 |
if (strpos($term[$i], '(') !== false) {
|
-232 |
+
223 |
if ($c1 == $c2) {
|
-233 |
+
224 |
$i++;
|
-234 |
+
225 |
}
|
-235 |
+
226 |
} else {
|
-236 |
+
227 |
if ( ! (substr_count($term[$i], "'") & 1) &&
|
-237 |
+
228 |
! (substr_count($term[$i], "\"") & 1)) {
|
-238 |
+
229 |
$i++;
|
-239 |
+
230 |
}
|
-240 |
+
231 |
}
|
-241 |
+
232 |
}
|
-242 |
+
233 |
}
|
-243 |
+
234 |
return $term;
|
-244 |
+
235 |
}
|
-245 |
+
236 |
|
-246 |
+
237 |
/**
|
-247 |
+
238 |
* clauseExplode
|
-248 |
+
239 |
*
|
-249 |
+
240 |
* explodes a string into array using custom brackets and
|
-250 |
+
241 |
* quote delimeters
|
+242 |
+ *
+ |
+243 |
+ *
+ |
+244 |
+ * example:
+ |
+245 |
+ *
+ |
+246 |
+ * parameters:
+ |
+247 |
+ * $str = "(age < 20 AND age > 18) AND name LIKE 'John Doe'"
+ |
+248 |
+ * $d = ' '
+ |
+249 |
+ * $e1 = '('
+ |
+250 |
+ * $e2 = ')'
+ |
251 |
*
|
252 |
- *
- |
-253 |
- * example:
- |
-254 |
- *
- |
-255 |
- * parameters:
- |
-256 |
- * $str = "(age < 20 AND age > 18) AND name LIKE 'John Doe'"
- |
-257 |
- * $d = ' '
- |
-258 |
- * $e1 = '('
- |
-259 |
- * $e2 = ')'
- |
-260 |
- *
- |
-261 |
* would return an array:
|
-262 |
+
253 |
* array('(age < 20 AND age > 18)',
|
-263 |
+
254 |
* 'name',
|
-264 |
+
255 |
* 'LIKE',
|
-265 |
+
256 |
* 'John Doe')
|
-266 |
+
257 |
*
|
-267 |
+
258 |
* @param string $str
|
-268 |
+
259 |
* @param string $d the delimeter which explodes the string
|
-269 |
+
260 |
* @param string $e1 the first bracket, usually '('
|
-270 |
+
261 |
* @param string $e2 the second bracket, usually ')'
|
-271 |
+
262 |
*
|
-272 |
+
263 |
* @return array
|
-273 |
+
264 |
*/
|
-274 |
+
265 |
public static function clauseExplode($str, array $d, $e1 = '(', $e2 = ')')
|
-275 |
+
266 |
{
|
-276 |
+
267 |
if (is_array($d)) {
|
-277 |
+
268 |
$d = array_map('preg_quote', $d);
|
+269 |
+
+ |
+270 |
+ if (in_array(' ', $d)) {
+ |
+271 |
+ $d[] = '\s';
+ |
+272 |
+ }
+ |
+273 |
+
+ |
+274 |
+ $split = '§(' . implode('|', $d) . ')§';
+ |
+275 |
+
+ |
+276 |
+ $str = preg_split($split, $str, -1, PREG_SPLIT_DELIM_CAPTURE);
+ |
+277 |
+ }
+ |
278 |
|
279 |
- if (in_array(' ', $d)) {
- |
-280 |
- $d[] = '\s';
- |
-281 |
- }
- |
-282 |
-
- |
-283 |
- $split = '§(' . implode('|', $d) . ')§';
- |
-284 |
-
- |
-285 |
- $str = preg_split($split, $str, -1, PREG_SPLIT_DELIM_CAPTURE);
- |
-286 |
- }
- |
-287 |
-
- |
-288 |
$i = 0;
|
-289 |
+
280 |
$term = array();
|
-290 |
+
281 |
|
-291 |
+
282 |
foreach ($str as $key => $val) {
|
-292 |
+
283 |
if ($key & 1) {
|
-293 |
+
284 |
if (isset($term[($i - 1)]) && ! is_array($term[($i - 1)])) {
|
-294 |
+
285 |
$term[($i - 1)] = array($term[($i - 1)], $val);
|
-295 |
+
286 |
}
|
-296 |
+
287 |
continue;
|
-297 |
+
288 |
}
|
-298 |
+
289 |
if (empty($term[$i])) {
|
-299 |
+
290 |
$term[$i] = $val;
|
-300 |
+
291 |
} else {
|
-301 |
+
292 |
$term[$i] .= $str[($key - 1)] . $val;
|
-302 |
+
293 |
}
|
-303 |
+
294 |
|
-304 |
+
295 |
$c1 = substr_count($term[$i], $e1);
|
-305 |
+
296 |
$c2 = substr_count($term[$i], $e2);
|
-306 |
+
297 |
|
-307 |
+
298 |
if (strpos($term[$i], '(') !== false) {
|
-308 |
+
299 |
if ($c1 == $c2) {
|
-309 |
+
300 |
$i++;
|
-310 |
+
301 |
}
|
-311 |
+
302 |
} else {
|
-312 |
+
303 |
if ( ! (substr_count($term[$i], "'") & 1) &&
|
-313 |
+
304 |
! (substr_count($term[$i], "\"") & 1)) {
|
-314 |
+
305 |
$i++;
|
-315 |
+
306 |
}
|
-316 |
+
307 |
}
|
-317 |
+
308 |
}
|
-318 |
+
309 |
$term[$i - 1] = array($term[$i - 1], '');
|
-319 |
+
310 |
|
-320 |
+
311 |
return $term;
|
-321 |
+
312 |
}
|
-322 |
+
313 |
}
|