asterisk-aqlAstconf 查詢語言
AQL (Astconf Query Language) 是一種類似 SQL 的語句用來為 PHP 讀寫 Asterisk 配置文件提供方便。
示例代碼:
<?
include("aql.php");
// to query extension 8001 settings from sip.conf
$aql = new aql;
$aql->set('basedir','/etc/asterisk/');
$db = $aql->query("select * from sip.conf where section='8001'");
print_r($db);
?>
output:
Array
(
[8888] => Array
(
[type] => friend
.....
)
)
評論
圖片
表情
