Asf_Db::getLinks

获取所有通过 Asf_Db 类连接数据库的资源


Description

public static array function getLinks(void)

Parameters

此函数没有参数

Return Values

成功时返回 Array , 失败时返回 NULL

Examples

Example #1

<?php
use Asf\Db;

$configs = array(
    'dsn' => array('host' => '127.0.0.1', 'dbname' => 'test', 'port' => 6666),
    'username' => 'test',
    'password' => 'AbcdefRDvgedf',
);

Db::initMysql($configs);
print_r(Db::getLinks());