internations / solr-utils
PHP的Solr/Lucene实用工具
v0.10.0
2022-08-01 10:20 UTC
Requires
- php: >=7.4
Requires (Dev)
This package is auto-updated.
Last update: 2024-08-29 03:23:42 UTC
README
SolrUtils
帮助处理与Solr一起工作的重复任务,如转义和清理用户输入。
use InterNations\Component\Solr\Expression\Expression\Util; // Quote a string to be used in a query Util::quote('(term)'); // "\(term\)" // Escape a string but not quote it Util::escape('(term)'); // \(term\) // Sanitize a string to be used safely in a query Util::sanitize('term'); // term