gpt4 book ai didi

jquery表的php过滤函数

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:47 26 4
gpt4 key购买 nike

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

函数应显示所有行仅当且仅当:


-- 两个词在同一列且在同一行
或者
-- 两个词在不同的列中并且在同一行中


所以..如果我在全局过滤器上键入 floor freefree floor 它应该总是返回相同的查询。

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

相反,在我的服务器端表中,控制全局过滤器的相关 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

最佳答案

嘿,我想我有一个想法。但要小心它未经测试。该函数应该像这样 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);
}
}

希望我的代码能帮到你一点点。

关于jquery表的php过滤函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29740587/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com