1. Go to this page and download the library: Download faithfm/smart-search-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
faithfm / smart-search-php example snippets
use FaithFM\SmartSearch\SmartSearch;
$search = 'optus 320 location:stock -F2701';
$smartSearch = new SmartSearch($search, 'asset_id|location|type|make|model|identifier');
$defaultFields = 'location,type'; // comma-separated
$defaultFields = 'location, type'; // comma-separated (with spaces)
$defaultFields = 'location|type'; // pipe-separated
$defaultFields = ['location', 'type']; // array format
//... and pretty much anything else that can be cast to an array (of strings)