yarri / full-text-search-query-like
FullTextSearchQueryLike is a PHP class which transforms search strings into clever SQL conditions with the LIKE operator
Installs: 31 343
Dependents: 1
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.0
Requires (Dev)
- atk14/tester: *
This package is auto-updated.
Last update: 2024-10-25 10:23:50 UTC
README
A PHP class which transforms search strings into clever SQL conditions with the LIKE operator.
The FullTextSearchQueryLike is fully tested in PHP from version 5.6 to 8.1.
Basic usage
Consider a table articles with a field title in which we would like to let users search.
$q = $_GET["search"]; // Here comes a user query string, e.g. "beer and wine"
$ftsql = new FullTextSearchQueryLike("title");
if($ftsql->parse($q)){
$search_condition = "WHERE ".$ftsql->get_formatted_query(); // e.g. "WHERE title LIKE '%beer%' AND title LIKE '%wine%'"
}
$query = "SELECT * FROM articles $search_condition ORDER BY created_at DESC";
Transformation examples
Some other specialities...
Searching in more fields
$q = $_GET["search"];
$ftsql = new FullTextSearchQueryLike("title||' '||body||' '||author");
// or
// $ftsql = new FullTextSearchQueryLike(["title","body","author"]);
if($ftsql->parse($q)){
$search_condition = "WHERE ".$ftsql->get_formatted_query();
}
$query = "SELECT * FROM articles $search_condition ORDER BY created_at DESC";
Case insensitive searching
$q = $_GET["search"];
$ftsql = new FullTextSearchQueryLike("UPPER(title||' '||body||' '||author)");
if($ftsql->parse(strtoupper($q))){
$search_condition = "WHERE ".$ftsql->get_formatted_query();
}
$query = "SELECT * FROM articles $search_condition ORDER BY created_at DESC";
Variable bindings
This is quite useful e.g. for Oracle database.
$q = $_GET["search"]; // Here comes a user query string, e.g. "beer and wine"
$ftsql = new FullTextSearchQueryLike("title");
if($ftsql->parse($q)){
$bindings = [];
$search_condition = "WHERE ".$ftsql->get_formatted_query_with_binds($bindings); // e.g. "WHERE title LIKE :search_word_021 AND title LIKE :search_word_022"
}
$query = "SELECT * FROM articles $search_condition ORDER BY created_at DESC";
var_dump($bindings); // e.g. [":search_word_021" => "%beer%", ":search_word_022" => "%wine%"]
Keywords highlighter
Don't forget to use my other tool for highlighting search words on a HTML output page.
https://packagist.org/packages/yarri/keywords-highlighter
Installation
Use the Composer to install the FullTextSearchQueryLike.
composer require yarri/full-text-search-query-like
Testing
In the package directory run:
composer update --dev
cd test
../vendor/bin/run_unit_tests
Final notice
Let's be honest. The code style is not great and all comments are in Czech language. The source was extracted from the very old project. But all the time it works well and reliably.
I really like it and install it to every new project i'm starting. It will be my pleasure when you find it useful too.
Licence
FullTextSearchQueryLike is free software distributed under the terms of the MIT license