flightphp文档说明了如何使用pdo连接到数据库。例如
Flight::register('db', 'PDO', array('mysql:host=localhost;dbname=test','user','pass'));
$db = Flight::db();
$x=$db->query("SELECT * FROM `test_table` LIMIT 0, 30")->fetch(PDO::FETCH_ASSOC);
但是,如何在flightphp中使用mysqli?
如果我用mysqli替换pdo,我会得到这个错误
mysqli::__construct(): php_network_getaddresses: getaddrinfo failed: Name or service not known (2)
Flight::register('db', 'mysqli', array('mysql:host=localhost;dbname=test','user','pass'));
$db = Flight::db();
$x=$db->query("SELECT * FROM `test_table` LIMIT 0, 30")->fetch_assoc();
1条答案
按热度按时间kpbwa7wx1#
多亏了@andriy maletsky,我才发现了错误所在。