PHP code example of faithfm / smart-search-php

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');
 
$filtered = $smartSearch->filterArray($items));

$filteredCollection = $smartSearch->filterCollection($myCollection));

$whereClause = $smartSearch->getSqlFilter());

$data = DB::table('my_table')::where($smartSearch->getBuilderFilter())->get();
// OR
$data = MyModel::where( $smartSearch->getBuilderFilter() )->get();

MyModel::smartSearch('joe', 'location|type')->get();

class MyResource extends Resource
{
    use SmartSearchableNovaResource;
    ...

var_dump($smartSearch->errors);
var_dump($smartSearch->getFilterOpsDescription());

new SmartSearch($searchString, $defaultFields = "", $allowedFields = "", $options = [], Closure $sqlEscapeStringFn = null)

$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)

const DEFAULT_OPTIONS = [
    'caseSensitive' => false,
    'sqlWildcard' => '%',
    'sqlWildcardSingleChar' => '_',
];