用于jquery表的php过滤函数

时间:2015-04-20 06:23:07

标签: php

我在服务器端处理中使用jquery数据表,我尝试在php中为我的全局过滤器实现一个函数:

功能应仅在时显示所有行


- 两个单词在同一列和同一行中 OR
- 两个单词都在不同的列中并且在同一行中


所以..如果我在全局过滤器上键入floor freefree floor,它应该始终返回SAME查询。

您可以在此处测试全局过滤器,但此表不会从MySQL加载数据,我想在php中复制此客户端过滤:DEMO

相反,在我的服务器端表中控制Global Filter的相关php代码是:

    static function filter ( $request, $columns, &$bindings )
{
    $globalSearch = array();
    $columnSearch = array();
    $dtColumns = self::pluck( $columns, 'dt' );

    if ( isset($request['search']) && $request['search']['value'] != '' ) {
        $str = $request['search']['value'];

        for ( $i=0, $ien=count($request['columns']) ; $i<$ien ; $i++ ) {
            $requestColumn = $request['columns'][$i];
            $columnIdx = array_search( $requestColumn['data'], $dtColumns );
            $column = $columns[ $columnIdx ];

            if ( $requestColumn['searchable'] == 'true' ) {
                $binding = self::bind( $bindings, '%'.$str.'%', PDO::PARAM_STR );
                //$globalSearch[] = "match(".$column['db'].") against (".$binding.")";
                $globalSearch[] = "`".$column['db']."` LIKE ".$binding;
            }
        }
    }

我该怎么办?
我相信我确实将搜索字符串分成了单独的单词:

$words = explode(' ', $str);
$wordcount = count($words);

然后我的情况应该是这样的:

WHERE IF(Column1 LIKE '%{$words[0]}%' OR Column2 LIKE '%{$words[0]}%' OR Column4 LIKE '%{$words[0]}%', 1, 0)
+ IF(Column1 LIKE '%{$words[1]}%' OR Column2 LIKE '%{$words[1]}%' OR Column4 LIKE '%{$words[1]}%', 1, 0)
+ IF(Column1 LIKE '%{$words[2]}%' OR Column2 LIKE '%{$words[2]}%' OR Column4 LIKE '%{$words[2]}%', 1, 0)
+ ...
    >= $wordcount

如果在任何列中找到该单词,则每个IF表达式应为1。将它们添加到一起将获得在任何列中找到的单词总数。然后测试这是否至少是单词的数量(如果同一个单词在多列中,则可能更多)。

但我不明白如何使用嵌套的foreach循环来从您的输入构建查询。我也不明白如果我必须使用Table API

1 个答案:

答案 0 :(得分:0)

嘿,我想我有个主意。但要小心它未经测试。该函数应该var_dump这样的SQL语句:

SELECT * FROM table
WHERE 
CONCAT(column1, column2, column3) LIKE '%free%' AND
CONCAT(column1, column2, column3) LIKE '%floor%'

Concat将3个给定列连接到一个(您可以根据需要连接多个列)

function filter ( $request, $columns, &$bindings )
{
    $globalSearch = array();
    $columnSearch = array();
    $dtColumns = self::pluck( $columns, 'dt' );

    if ( isset($request['search']) && $request['search']['value'] != '' ) {
        $string = $request['search']['value'];
        $string = split(" ", $string);
        $query = "SELECT * FROM table WHERE ";
        $j = 0;
        foreach($string as $str){
            $concat = "CONCAT(";
            for ( $i=0, $ien=count($request['columns']) ; $i<$ien ; $i++ ) {
                $requestColumn = $request['columns'][$i];
                $columnIdx = array_search( $requestColumn['data'], $dtColumns );
                $column = $columns[ $columnIdx ];

                if ( $requestColumn['searchable'] == 'true' ) {
                    //$binding = self::bind( $bindings, '%'.$str.'%', PDO::PARAM_STR );
                    //$globalSearch[] = "match(".$column['db'].") against (".$binding.")";
                    $globalSearch[] = $column['db'];
                }
            }
            $concat .= implode(",", $globalSearch) . ") LIKE '%" . $str . "%'";
            if($j > 0 ){
                $query .= " AND " . $concat;
            }else{
                $query .= $concat;
            }
            $globalSeach = array();
            $j++
        }
        var_dump($query);
    }
}

我希望我的代码可以帮助你一点点。