PHP code example of liguizhou / elasticsearch

1. Go to this page and download the library: Download liguizhou/elasticsearch 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/ */

    

liguizhou / elasticsearch example snippets




declare(strict_types=1);

namespace App\EsModel;

use Liguizhou\Elasticsearch\Model;

class OrderModel extends Model
{
    /**
     * 索引
     * */
    protected $index = 'order';
   
}


   OrderModel::query()->where('pid', '1')->get()->toArray();      
   OrderModel::query()->where('pid', 'in', [1,2,3])->groupBy(['pid'])->orderBy(['pid'])->get()->toArray();   
   OrderModel::query()->whereIn('pid', [1,2,3])->offset(0)->limit(10)->paginate();