PHP连接MySQL
程序员文章站
2022-03-10 11:51:43
一、实例 (MySQLi - 面向对象)
一、实例 (mysqli - 面向对象)
{
}
二、实例 (mysqli - 面向过程)
三、实例 (pdo)
四、持久化连接
<?php $dbh = new pdo('mysql:host=localhost;dbname=test', $user, $pass, array( pdo::attr_persistent => true )); ?>