douxuanma4357 2014-05-21 05:37
浏览 47
已采纳

Phalcon 1.3.0使用Phalcon \ Mvc \ Model \ Query来制作LIKE子句

I'm trying to make LIKE '%something%' with Phalcon\Mvc\Model\Query with bound parameters.

Any ideas how to do it?

This didn't work for me:

$robots = Robots::query()
->where("type LIKE :type:")
->andWhere("year < 2000")
->bind(array("type" => "mechanical"))
->order("name")
->execute();
  • 写回答

1条回答 默认 最新

  • doufei4923 2014-05-21 11:35
    关注

    Try below code. I'm using similar code with only last '%' on the end.

    $robots = Robots::query()
        ->where("type LIKE :type:")
        ->andWhere("year < 2000")
        // Just add the '%' where you need them:
        ->bind(array("type" => "%mechanical%"))
        ->order("name")
        ->execute();
    
    // OR
    $searchTerm = "mechanical";
    $robots = Robots::query()
        ->where("type LIKE :type:")
        ->andWhere("year < 2000")
        ->bind(array("type" => "%" . $searchTerm ."%"))
        ->order("name")
        ->execute();
    

    I'm not sure if this is intended way of doing this (looks little bit hackish) but it works.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 python 3.8.0版本,安装官方库ibm_db遇到问题,提示找不到ibm_db模块。如何解决?
  • ¥15 TMUXHS4412如何防止静电,
  • ¥30 Metashape软件中如何将建模后的图像中的植被与庄稼点云删除
  • ¥20 机械振动学课后习题求解答
  • ¥15 IEC61850 客户端和服务端的通讯机制
  • ¥15 MAX98357a(关键词-播放音频)
  • ¥15 Linux误删文件,请求帮助
  • ¥15 IBMP550小型机使用串口登录操作系统
  • ¥15 关于#python#的问题:现已知七自由度机器人的DH参数,利用DH参数求解机器人的逆运动学解目前使用的PSO算法
  • ¥15 发那科机器人与设备通讯配置
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部