Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フルテキスト検索の MySQL クエリを実行することはできますか? TableGateway を使用してそれを行うにはどうすればよいですか? 前もって感謝します。
$table = new \Zend\Db\TableGateway\TableGateway('table', $adapter); $rowset = $table->select(function (\Zend\Db\Sql\Select $select) { $select->where(array( new \Zend\Db\Sql\Predicate\Expression("MATCH(column) AGAINST ('testing')") )); });