郭骏博2018-03-20 17:51:16
複数の条件は通常、or ではなく and に関連します
条件はすべて URL を通じて渡され、PHP は get を通じて条件値を取得し、データベースから読み取ります
炎2018-03-06 16:38:19
tpフレームワークの解決策
$where['条件フィールド1|条件フィールド2'] = array('like', "%queryKeyword%");
M('table')->where( $where )->select();
ネイティブ コード
select * from table name where field 1 like %queryKeyword%% or field 2 like %queryKeyword%