当前位置: 首页>>代码示例>>PHP>>正文


PHP aql::set方法代码示例

本文整理汇总了PHP中aql::set方法的典型用法代码示例。如果您正苦于以下问题:PHP aql::set方法的具体用法?PHP aql::set怎么用?PHP aql::set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在aql的用法示例。


在下文中一共展示了aql::set方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: name

 function name()
 {
     set_include_path(get_include_path() . PATH_SEPARATOR . BASEPATH . 'libraries/inc');
     $aql = new aql();
     $aql->set('basedir', '/etc/asterisk/');
     $db = $aql->query("insert into t9.conf set callerid=\"'99' <99>\",section='555'");
     echo $aql->errstr;
     print_r($db);
     return 'name';
 }
开发者ID:qinlibingfeng,项目名称:html,代码行数:10,代码来源:someclass.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";
开发者ID:nareshkhuriwal,项目名称:asterisk-aql,代码行数:31,代码来源:aqlcli.php


注:本文中的aql::set方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。