我正在为 cakephp 使用 ICHIKAWAY 的 mongodb 驱动程序。
我真正不明白的一件事是如何使用 MONGODB 在 cakephp 中执行“LIKE”语句。
我试过这个说法:
$users = $this->User->find('all', array('conditions' => array('data_type' => 'user', 'profile.firstname LIKE' => '%'.$string)));
但它不起作用,因为“LIKE”是一个 mysql 函数。
感谢您的建议。