Home Backend Development PHP Tutorial AIML based PHP chatbot

AIML based PHP chatbot

Jan 11, 2020 pm 03:28 PM
php

chatbot: PHP chatbot based on AIML

This article introduces a small chatbot program implemented in PHP, using knowledge related to PHP operating dom and mysql database, which can be used for learning. The code can be downloaded from https://github.com/kompasim/chatbot.

0. Reminder

This chat robot is written with reference to AIML 2.5 and Program-P. The aiml tags implemented by this chat robot and the standard aiml tags are determined by certain gap, so the aiml corpus you downloaded from the Internet may not work properly. Suitable for UTF-8 encoded languages ​​where word suffixes change according to different tenses. Interested friends can do their own research and study.

1. Introduction

This is an aiml parser written in PHP. It can currently run normally in the PHP5.4 environment.

2. Database configuration

This program uses a MySQL database. You need to pour the chatbot.sql file into your database, and then add it to chatbot/Config.php Modify the relevant database configuration variables in the file.

4. aiml corpus resources

You can directly edit the aiml/chatbot.aiml file or create a new aiml file and then The aiml/chatbot.aiml file introduces it with the include tag.

5. About aiml file

aiml must be placed in the aiml directory.

chatbot.aiml is the entry file, and the aiml tag in it Can contain multiple category tags, a default tag and multiple include tags.

The other aiml files you add must contain a topic tag in the root aiml tag. This topic tag can contain multiple category tags and a default tag (other aiml files here cannot write include tags, include Tags can only appear in the chatbot.aiml file).

6. Test the chatbot

You can open index.php to chat with the robot for testing.

7. Call the chatbot

If you want to call the chatbot in your own application, we can call its api like this api.php?requestType=talk&input=Hello

8. About matching rules

Matching rules after modification:

* ---> (\S+)
# ---> \S+
_ ---> .*
= ---> \S*
Copy after login

9. About AIML tags

The aiml tag of this chat robot is different from the standard aiml tag. I have personalized the tags according to my needs. We can find more tags supported by this chat robot in the AIML.MD file.

10. About the return data of api.php

{
    "status": "success",
    "type": "talk",
    "message": "haha ...",
    "data": {
        "arr1": {
            "name11": "value11",
            "name12": "value12"
        },
        "arr2": {
            "name21": "value21",
            "name22": "value22"
        }
    }
}
Copy after login

When you access api.php?requestType=talk&userInput=haha, you can get the above json data.

<category>
    <pattern>haha</pattern>
    <template>
        <data name="arr1">
            <attr name="name11">value11</attr>
            <attr name="name12">value12</attr>
        </data>
        <data name="arr2">
            <attr name="name21">value21</attr>
            <attr name="name22">value22</attr>
        </data>
        haha ...
    </template>
</category>
Copy after login

11. About userId

When you send a request to api.php in GET mode with the userId parameter, this parameter will be used as the user's unique identifier. If you do not give this parameter, the program will use the user's IP as the unique identifier.

$userId = isset($_REQUEST[&#39;userId&#39;]) ? $_REQUEST[&#39;userId&#39;] : $_SERVER[&#39;REMOTE_ADDR&#39;];
Copy after login

12. About multiple chatbots

If you set multiChatbot in the 'chatbot/Config.php' file to false, all users will share a default chatbot. When you set it to true, each user will have an independent chatbot. These chatbots will use userId as the unique identifier. Each user sets attributes such as name, gender, age, etc. for his or her chatbot. Multiple chatbot functionality is especially useful when you are writing a voice assistant or the like, because users can set names for their own voice assistants.

$user = $this->getUser($this->_unique);
if ($this->_config->multiChatbot){
    $bot = $this->getBot($this->_unique);
} else {
    $bot = $this->getBot("default");
}
Copy after login

13. About userInfo and botInfo

userInfo and botInfo refer to some attributes of users and chatbots, such as name, age, gender, etc. Users can change these attributes. Of course, this is achieved through some tags when we write the aiml corpus. We can learn set, get, del, user, bot and other related tags from AIML.MD.

<category>
    <pattern>my name is *</pattern>
    <template>
        ok , your name is
        <star/>
        <set type="user" name="name">
            <star/>
        </set>
    </template>
</category>
<category>
    <pattern>what is my name</pattern>
    <template>
        oh , your name is
        <get type="user" name="name"/>
        , i remembered it last time ...
    </template>
</category>
Copy after login

14. About the database

log is a table that stores logs.

property is a table that stores user and bot related attributes, which is equivalent to our The head of the chatbot helps us remember some attributes. Tags such as set, get, del, user, bot are used to operate this table. The

data table is used to store user input, robot replies, input, that, topic and other tags will operate Parser:: $_data array, each time the program starts running, the program will load data from this table into this array, and then store it in this table when the program ends. The only identifier of the table is userId.

Source code

https://github.com/kompasim/chatbot

The above is the detailed content of AIML based PHP chatbot. 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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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 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.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles