patrickschur / aiml-converter
将 AIML 转换为 CSV 以及 CSV 转换为 AIML。
1.0.0
2017-04-23 00:57 UTC
Requires
- php: >=5.4
This package is auto-updated.
Last update: 2024-09-17 00:36:21 UTC
README
将 AIML 转换为 CSV 以及 CSV 转换为 AIML。
如何使用
$ composer require patrickschur/aiml-converter
require 'vendor/autoload.php'; $conv = new AIMLConverter; $conv->aiml2csv('default.aiml'); // Creates a CSV file from an AIML file // or $conv->csv2aiml('default.csv'); // Creates a various amount of AIML files from a CSV file