rayansys/ami_listener

Asterisk Manager Interface 的事件监听器

1.3.1 2023-04-26 07:05 UTC

This package is auto-updated.

Last update: 2024-09-26 10:02:11 UTC


README

需求

PHP 5.4

安装

composer require rayansys/AMIListener

基本用法

<?php
use AMIListener\AMIListener;

require_once __DIR__ . '/vendor/autoload.php';

$ami = new AMIListener("username","secret","127.0.0.1",5038);
$ami->addListener(function($parameter){
    print_r($parameter);
});
$ami->start();

可用命令

php start.php start
php start.php start -d
php start.php status
php start.php status -d
php start.php connections
php start.php stop
php start.php stop -g
php start.php restart
php start.php reload
php start.php reload -g