Redaxscript\Db::whereLikeMany PHP 메소드

whereLikeMany() 공개 메소드

where like with many
부터: 3.0.0
public whereLikeMany ( array $columnArray = null, array $likeArray = null ) : Db
$columnArray array array of column names
$likeArray array array of the like
리턴 Db
    public function whereLikeMany($columnArray = null, $likeArray = null)
    {
        return $this->_addWhere('(' . implode($columnArray, ' LIKE ? OR ') . ' LIKE ? )', $likeArray);
    }