php url/rest 布尔逻辑解析器
是否有任何现有的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下 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