Home Backend Development PHP Tutorial How to use Elasticsearch in PHP

How to use Elasticsearch in PHP

Oct 03, 2023 am 08:22 AM
php use elasticsearch

Elasticsearch 如何在 PHP 中使用

How to use Elasticsearch in PHP requires specific code examples

Introduction:
Elasticsearch is an open source distributed search engine that can achieve fast and accurate Search and analyze large amounts of data efficiently. It provides a simple and powerful API that allows developers to easily use Elasticsearch in various programming languages. This article will introduce you to using Elasticsearch in PHP and provide some concrete code examples to help you get started.

1. Install and configure Elasticsearch
First, you need to install Elasticsearch locally. You can download the latest executable file from the official website (https://www.elastic.co/downloads/elasticsearch) and follow the instructions to install it.

After the installation is complete, you need to configure the relevant settings of Elasticsearch. Open the elasticsearch.yml file, which can be found via the following path: /path/to/elasticsearch/config/elasticsearch.yml. Make sure the following settings are correct:

cluster.name: my-application
node.name: node-1
Copy after login

You can also customize other configuration options as needed.

2. Install the Elasticsearch PHP client library
Using Elasticsearch in PHP requires installing the corresponding PHP client library. There are many libraries available to choose from, this article will use elasticsearch-php as an example. You can install the library through Composer and run the following command:

composer require elasticsearch/elasticsearch
Copy after login

After the installation is complete, you can introduce the library into the PHP script:

require 'vendor/autoload.php';
Copy after login

3. Connect to Elasticsearch
Before using Elasticsearch, we need to establish a connection with Elasticsearch. First, create a new PHP file named elasticsearch.php. Then, put the following code into the file:

<?php
require 'vendor/autoload.php';
use ElasticsearchClientBuilder;

// 创建连接配置
$config = [
    'hosts' => ['localhost:9200'] // 修改为你的Elasticsearch主机和端口
];

// 创建连接
$client = ClientBuilder::create()->setHosts($config['hosts'])->build();

// 测试连接
$response = $client->ping();
if ($response) {
    echo "连接成功!";
} else {
    echo "连接失败!";
}
Copy after login

This code first introduces the Elasticsearch library and uses ClientBuilder to establish a connection with Elasticsearch. We then send a simple request to Elasticsearch via the ping() method to test whether the connection is successful.

4. Perform search operations
Now that we have successfully connected to Elasticsearch, we can start performing some search operations. The following is an example for searching an index named "myindex" for documents containing the keyword "PHP" in the "title" field:

<?php
require 'vendor/autoload.php';
use ElasticsearchClientBuilder;

$config = [
    'hosts' => ['localhost:9200']
];

$client = ClientBuilder::create()->setHosts($config['hosts'])->build();

$params = [
    'index' => 'myindex',
    'body'  => [
        'query' => [
            'match' => [
                'title' => 'PHP'
            ]
        ]
    ]
];

$response = $client->search($params);

print_r($response);
Copy after login

The above code first sets up a $params array, Specifies the index and search criteria to search. We then use the client's search() method to perform the search. Finally, the search results are output.

5. Perform indexing operations
In addition to searching, we can also perform indexing operations in Elasticsearch, that is, insert, update, and delete documents. The following is an example for inserting a new document into the "myindex" index:

<?php
require 'vendor/autoload.php';
use ElasticsearchClientBuilder;

$config = [
    'hosts' => ['localhost:9200']
];

$client = ClientBuilder::create()->setHosts($config['hosts'])->build();

$params = [
    'index' => 'myindex',
    'body'  => [
        'title' => 'Elasticsearch in PHP',
        'content' => 'Elasticsearch is a powerful search engine built on top of Lucene.'
    ]
];

$response = $client->index($params);

print_r($response);
Copy after login

The above code first sets up a $params array, specifying the content of the document to be inserted. Then, use the client's index() method to index a new document into Elasticsearch. Finally, output the operation results.

6. Summary
This article introduces how to use Elasticsearch in PHP, and provides specific code examples to help you get started. You can further explore the powerful functions and rich APIs of Elasticsearch according to your own needs. Hope this article helps you!

The above is the detailed content of How to use Elasticsearch in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Logging CakePHP Logging Sep 10, 2024 pm 05:26 PM

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

See all articles