链接pdo...

Original 2019-03-14 15:35:07 216
abstract:pdo = new PDO("mysql:host=127.0.0.1;dbname=1604a",'root

class Curl

{

public $pdo = '';

public function __construct(){

//try抛出异常处理

try{

$this->pdo = new PDO("mysql:host=127.0.0.1;dbname=1604a",'root','root');

} catch (PDOException $e) {

echo $e->getMessage();

}


}

}


$mysqli = new Curl();




?>


Correcting teacher:韦小宝Correction time:2019-03-14 16:58:10
Teacher's summary:目前在PHP中使用最多连接数据库的方式就是pdo 当然也有使用mysqli的 pdo可以连接任何类型的数据库 使用起来也很方便简单

Release Notes

Popular Entries