internations/solr-utils

PHP的Solr/Lucene实用工具

v0.10.0 2022-08-01 10:20 UTC

README

Test

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