explode queries by any whitespaces, not only spaces
This commit is contained in:
parent
5990090652
commit
40b7b14fb7
1 changed files with 8 additions and 1 deletions
|
@ -1278,11 +1278,18 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
|
||||||
*/
|
*/
|
||||||
public static function sqlExplode($str, $d = ' ', $e1 = '(', $e2 = ')')
|
public static function sqlExplode($str, $d = ' ', $e1 = '(', $e2 = ')')
|
||||||
{
|
{
|
||||||
|
if ($d == ' ') {
|
||||||
|
$d = array(' ', '\s');
|
||||||
|
}
|
||||||
if(is_array($d)) {
|
if(is_array($d)) {
|
||||||
|
if (in_array(' ', $d)) {
|
||||||
|
$d[] = '\s';
|
||||||
|
}
|
||||||
$str = preg_split('/('.implode('|', $d).')/', $str);
|
$str = preg_split('/('.implode('|', $d).')/', $str);
|
||||||
$d = stripslashes($d[0]);
|
$d = stripslashes($d[0]);
|
||||||
} else
|
} else {
|
||||||
$str = explode("$d",$str);
|
$str = explode("$d",$str);
|
||||||
|
}
|
||||||
|
|
||||||
$i = 0;
|
$i = 0;
|
||||||
$term = array();
|
$term = array();
|
||||||
|
|
Loading…
Add table
Reference in a new issue