获取所有通过 Asf_Db 类连接数据库的资源
public static array function getLinks(void)
此函数没有参数
成功时返回 Array , 失败时返回 NULL
<?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());