从db phalcon中检索标签

时间:2016-04-02 07:04:56

标签: php mysql database tags phalcon

我正在使用phalcon实施博客。有一个标记字段后跟: https://github.com/mfiels/tagsly/blob/master/index.html

将多个值插入到db中。但是不明白如何从tags字段中检索数组值。

我想渲染所有标签列表,如果用户点击该标签,那么它应该呈现所有相关帖子的列表。我的意思是功能我无法想象它$ tags = Blogs :: find();如何使用like子句查找数组值?或者我错了?还是有简单的方法吗?请...

My db looks like this

1 个答案:

答案 0 :(得分:1)

您尝试过类似的事情吗?

$result = Blogs::find([
    'tag LIKE :tag:',
    'bind' => ['tag' => $tag],
]);