尝试使用 PDO 在 localhost 中获取数据库数组
$user = 'root';
$server = 'localhost';
$db = new PDO("mysql:host=$server", $user);
$sql = "show databases";
$st = $db->prepare($sql);
$st->execute();
$arr = $st->fetchAll(PDO::FETCH_ASSOC);
foreach($arr as $el){
echo $el . '<br>'; // error - array to string conversion
}
也试过:
$arr = $st->fetch(PDO::FETCH_ASSOC);
结果 - 仅回显第一个数据库
有什么帮助吗?
LEATH
慕桂英4014372