php url/rest 布尔逻辑解析器

发布于 2024-11-27 16:16:41 字数 278 浏览 1 评论 0原文

是否有任何现有的 php 模块/库/类可以从字符串/url 中解析出布尔逻辑(and、or、not、in、not in、=、<、> 和分组)?

我正在数据库中创建一个 REST API,并希望支持对每个对象的列/字段值的高级布尔查询。

我当前的后备方案是通过 php/sql 支持简单的列过滤器 (/object/*/key/val) 并使用数据库的 solr 实例来支持直接 solr 查询(具有大量查询功能)。唯一的问题是 solr 不是实时数据。它最多有 1-2 分钟的陈旧时间,这并不理想。

Are there any existing php modules/libraries/classes to parse out boolean logic (and, or, not, in, not in, =, <, >, and grouping) from a string/url?

I am creating a rest api into a database and would like to support advanced boolean queries for the column/field values of each object.

My current fallback is to support simple column filters (/object/*/key/val) via php/sql and use our solr instance of the database to support direct solr queries (which has tons of query features). The only problem with this is that solr is not realtime data. It is up to 1-2 minutes stale, which is not ideal.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

短暂陪伴 2024-12-04 16:16:41

尝试一下 php.ini 中的 parse_str() 。

有关此检查的更多信息 https://www.php.net/手册/en/function.parse-str.php

Try out parse_str() in php.

For more info about this check https://www.php.net/manual/en/function.parse-str.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文