0

我有 4 个下拉菜单,提交时可能包含也可能不包含在 mysql 查询中作为 where 语句的值。基本上没有为每个可能的下拉列表组合编写和 if 语句,如果 $_POST['dropdownitem'] 不为空,我想找出一种插入 where 语句的方法。在下面的块中,基本上任何带有 $_POST 的东西都可能存在也可能不存在。

$select = dbz( )
->select( )
->from( array( 'l' => 'logs' ) )
->joinLeft( array( 'd' => 'dealers' ), 'l.dealerID = d.id' )
->joinLeft( array( 'p' => 'prospects' ), 'l.dealerID = p.id', array( 'id', 'name AS pname' ) )
->where( 'l.id = ?', $currentUser[ 'id' ] )
->where( 'l.dealerId = ?', $_POST[ 'dealerid' ] )
->where( 'logData LIKE ?', '%' . $_POST[ 'activitytype' ] . '%' );
->where( 'logTime >= ?', $today )
->where( 'logTime < ?', strtotime( $tomorrow ) );

$userLogs = dbz( )->fetchAll( $select );
4

1 回答 1

2

无法避免您需要以不同方式验证每个发布的值,因此您至少需要进行一些条件检查以确保您的查询构造正确。

如果值发生变化,将其封装在如下所示的函数中可能会为您提供更好的灵活性。我个人认为 switch 语句也将使其更易于阅读并在将来再次更改。

$select = dbz()
  ->select()
  ->from( array( 'l' => 'logs' ) )
  ->joinLeft( array( 'd' => 'dealers' ), 'l.dealerID = d.id' )
  ->joinLeft( array( 'p' => 'prospects' ), 'l.dealerID = p.id', array( 'id', 'name AS pname' ) )

public function addConditionals($query, $userId, array $data = array())
{
  $select->where('l.id = ?', $userId);
  foreach($data as $column => $value) {
    switch(strtolower($column)) {
      case 'dealerid':
        $select->where('l.dealerId = ?', intval($value));        
      break;
      case 'activitytype':
        $select->where('logData = ?', $value));        
      break;
      // etc...
    }
  }
}
addConditionals($select, $currentUser['id'], $_POST);
于 2013-07-26T17:58:56.943 回答