PHP code example of ridesoft / aiml
1. Go to this page and download the library: Download ridesoft/aiml 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/ */
ridesoft / aiml example snippets
= new \Ridesoft\AIML\File();
echo "Hello Aiml\n";
echo $file->setAimlFile(__DIR__ . '/files/simple.aiml')
->getCategory('Hello Aiml')
->getTemplate() . "\n";
$file2 = new \Ridesoft\AIML\File();
$category = $file2->setAimlFile(__DIR__ . '/files/srai.aiml')
->getCategory('Who Mauri is?');
echo "Who Mauri is? \n";
if ($category->isTemplateSrai()) {
echo $file2->getCategory($category->getTemplate($category->getStars()))
->getTemplate(). "\n";
}