PHP code example of draguo / opensearch

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

    

draguo / opensearch example snippets


$config = [
    'app_id' => '', // 应用id
    'secret' => '', // 应用密钥
    'app_name' => '', // 应用名
    'suggest_name' => '', // 搜索名
    'host' => 'http://opensearch-cn-beijing.aliyuncs.com', // 主机地址
];
$app = new Opensearch($config);

// String $query 搜索词
// int $hit 限制返回数量
$result = $search->suggest($query, $hit);