當前位置: 首頁>>代碼示例>>PHP>>正文


PHP aql::get_error方法代碼示例

本文整理匯總了PHP中aql::get_error方法的典型用法代碼示例。如果您正苦於以下問題:PHP aql::get_error方法的具體用法?PHP aql::get_error怎麽用?PHP aql::get_error使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在aql的用法示例。


在下文中一共展示了aql::get_error方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: aql

<?php

/*
 * This is Test demo script for AQL
*/
error_reporting(E_ALL);
require "../inc/aql.php";
$a = new aql();
$a->open_config_file('t3.conf');
$a->assign_editkey('general', 'allow[1]', 'g722');
if (!$a->save_config_file('t3.conf')) {
    echo $a->get_error();
} else {
    echo "changed sections: \n";
    print_r($a->last_save_changed_sections);
    echo "changed filename: " . $a->last_save_changed_filename . "\n";
}
開發者ID:nareshkhuriwal,項目名稱:asterisk-aql,代碼行數:17,代碼來源:t3.php

示例2: aql

<?php

/*
 * This is Test demo script for AQL
*/
error_reporting(E_ALL);
require "../inc/aql.php";
$a = new aql();
$setok = $a->set('basedir', './');
if (!$setok) {
    echo __LINE__ . ' ' . $a->get_error();
}
$result = $a->query("insert into t15.conf set callerid=\"\\\"99\\\" <99>\",section='" . time() . "'");
if ($result == false) {
    echo $a->get_error();
} else {
    echo 'affected_rows :' . $a->get_affected_rows() . "\n";
}
開發者ID:nareshkhuriwal,項目名稱:asterisk-aql,代碼行數:18,代碼來源:t15.php

示例3: aql

/*
 * this is demo command line interface of aql library
 */
ini_set ('memory_limit', '128M');
require(dirname(__FILE__)."/inc/aql.php");

$base_dir = $_SERVER['argv'][1];

if (!is_dir($base_dir)) {
    echo "AQLCLI : sorry can't find basedir\n";
    exit;
}

$aql = new aql();
if (!$aql->set('basedir',$base_dir)) {
    echo "AQLCLI : ".$aql->get_error()."\n";
    exit;
}

echo "Welcome to the AQL command line interface.  Commands end pass Enter key\n";
echo "Your AQL Library version : ".$aql->get_version()." ,   AQL_Confparser Version : ".aql_confparser::get_version()."\n\n";
echo "type 'help' for help.\n\n";

while(1) {
    echo "AQLcli>";
    $input = fgets(STDIN);
    $input = trim($input);
    if ($input == 'help') {
        echo "List of all Interface commands : \n\n";
        echo "help      Display this help.\n";
        echo "quit      Quit AQLcli.\n";
開發者ID:nareshkhuriwal,項目名稱:asterisk-aql,代碼行數:31,代碼來源:aqlcli.php


注:本文中的aql::get_error方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。