有没有办法在过滤数据表时忽略空格?

时间:2012-04-24 19:33:30

标签: php jquery datatables

我正在使用jquery插件Datables,我正在使用php处理文件进行过滤。我已经修改了代码以允许多个关键字。但是如果我输入一个空格作为起始字符我得到一个JSON错误是否可以忽略此错误而不必单击确定?或者有没有办法修改php以允许空格开始。

感谢

下面是一些代码:

 $sWhere = "";
    if ( $_GET['sSearch'] != "")
    {
            $aWords = preg_split('/\s+/', $_GET['sSearch']);
            $sWhere = "WHERE (";

            for ( $j=0 ; $j<count($aWords) ; $j++ )
            {
                    if ( $aWords[$j] != "" )
                    {
                            if(substr($aWords[$j], 0, 1) == "!"){
                                    $notString = substr($aWords[$j], 1);
                                    $sWhere .= "(";
                                    for ( $i=0 ; $i<count($aColumns) ; $i++ ) {
                                            $sWhere .= $aColumns[$i]." NOT LIKE '%".mysql_real_escape_string( $notString )."%' AND ";
                                    }
                                    $sWhere = substr_replace( $sWhere, "", -4 );
                            }
                            else{
                                    $sWhere .= "(";
                                    for ( $i=0 ; $i<count($aColumns) ; $i++ ) {
                                            $sWhere .= $aColumns[$i]." LIKE '%".mysql_real_escape_string( $aWords[$j] )."%' OR ";
                                    }
                                    $sWhere = substr_replace( $sWhere, "", -3 );
                            }
                            $sWhere .= ") AND ";
                    }
            }

2 个答案:

答案 0 :(得分:1)

问题在于preg_split()在单空格字符串上运行:

$e = preg_split('/\s+/', " ");
print_r($e);

拆分单个空格将返回两个空字符串的数组。将第一行更改为:

$term = trim($_GET['sSearch']);
if ( $term != "")
{
        $aWords = preg_split('/\s+/', $term);

这样,您就不会尝试使用基本上空白的字符串运行代码。

答案 1 :(得分:1)

我不确定json错误发生在哪里,因为你只显示了php,但php和jQuery都提供了从字符串的开头和结尾修剪空格的函数。

在您的javascript中,在剩余的处理之前,您可以执行以下操作:

my_string = $.trim(original_string);

在php中你可以这样做:

$aWords = preg_split('/\s+/', trim($_GET['sSearch']));
// or use trim on the individual words of the result...