gpt4 book ai didi

php - 如何使用 CakePHP3 ORM 获取字符串格式的 where 子句?

转载 作者:行者123 更新时间:2023-11-29 06:30:56 27 4
gpt4 key购买 nike

在 CakePHP3 中,有一个 ORM 可以帮助构建查询。

来自documentation ,我可以看到

$query = $articles->find(); // build a query that has not run yet
$query->where(['id' => 1]); // Return the same query object

所以在这种情况下,我想要字符串

WHERE `articles`.`id` = 1

经过多次谷歌搜索,我发现有一种方法 to return just the where clause of a query object .

$query->where(['id' => 1])->clause('where'); // Return the where clause in the form of a QueryExpression

更多的谷歌搜索让我找到了如何 get the QueryExpression to spit out string representation

$query->where(['id' => 1])->clause('where')->sql($valueBinder); // Return the where clause in string format

这是我的问题。我不知道 $valueBinder 应该是什么样子。我不知道如何初始化它。

我也很高兴不使用 ValueBinder,只要我可以使用 CakePHP 3 ORM 和正确的 SQL 方言获得字符串格式的 where 子句。请假设我使用的是 MySQL。

请指教。

编辑

我尝试使用 $query->valueBinder() 作为 $valueBinder

它是空的,不包含关联的 c:0 到值 1

最佳答案

要直接回答您的问题,您可以通过以下方式获取任何子句的 SQL:

$binder = new \Cake\ORM\ValueBinder();
$query->clause('where')->sql($binder);

这将返回带有正确占位符的 SQL,而不是带有要使用的值的 SQL。这些值位于 $binder 变量中,用于语句对象。

如我所见,您只想保留 where 子句的内部结构,以便将其传递给不同请求中的另一个查询。您的解决方案很好,但我想补充一点,您还可以对现有查询中的完整条件树进行编码:

$where = serialize($query->clause('where'));
$anotherQuery->where(unserialize($where)); // A query in another request

在任何情况下,您都需要小心反序列化的内容,因为直接从用户输入中获取它肯定会导致安全问题。

关于php - 如何使用 CakePHP3 ORM 获取字符串格式的 where 子句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27996645/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com