PHP PDO连接连接管理
PHP PDO连接
PHP PDO 参考手册连接是通过创建 PDO 基类的实例而建立的。不管使用哪种驱动程序,都是用 PDO 类名。
连接到 MySQL
<?php $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass); ?><button class="copy-code-button" type="button" data-clipboard-text="<?php $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass); ?> " style="display:none;"></button>
注意:如果有任何连接错误,将抛出一个 PDOException 异常对象。
处理连接错误
<?phptry { $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass); foreach($dbh->query('SELECT * from FOO') as $row) { print_r($row); } $dbh = null; } catch (PDOException $e) { print "Error!: " . $e->getMessage() . "<br/>"; die(); } ?><button class="copy-code-button" type="button" data-clipboard-text="<?php try { $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass); foreach($dbh->query('SELECT * from FOO') as $row) { print_r($row); } $dbh = null; } catch (PDOException $e) { print "Error!: " . $e->getMessage() . " "; die(); } ?> " style="display:none;"></button>
连接数据成功后,返回一个 PDO 类的实例给脚本,此连接在 PDO 对象的生存周期中保持活动。
要想关闭连接,需要销毁对象以确保所有剩余到它的引用都被删除,可以赋一个 NULL 值给对象变量。
如果不这么做,PHP 在脚本结束时会自动关闭连接。
关闭一个连接:
<?php $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass); // 在此使用连接 // 现在运行完成,在此关闭连接 $dbh = null; ?><button class="copy-code-button" type="button" data-clipboard-text="<?php $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass); // 在此使用连接 // 现在运行完成,在此关闭连接 $dbh = null; ?> "></button>
很多 web 应用程序通过使用到数据库服务的持久连接获得好处。
持久连接在脚本结束后不会被关闭,且被缓存,当另一个使用相同凭证的脚本连接请求时被重用。
持久连接缓存可以避免每次脚本需要与数据库回话时建立一个新连接的开销,从而让 web 应用程序更快。
持久化连接
<?php $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass, array( PDO::ATTR_PERSISTENT => true )); ?><button class="copy-code-button" type="button" data-clipboard-text="<?php $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass, array( PDO::ATTR_PERSISTENT => true )); ?> "></button>
注意:如果想使用持久连接,必须在传递给 PDO 构造函数的驱动选项数组中设置 PDO::ATTR_PERSISTENT 。如果是在对象初始化之后用 PDO::setAttribute() 设置此属性,则驱动程序将不会使用持久连接。
PHP PDO 参考手册相关文章
- PHP 数据类型
- PHP reset() 函数
- PHP sizeof() 函数
- PHP curl_file_create函数
- PHP timezone_identifiers_list() 函数
- PHP is_link() 函数
- PHP FILTER_SANITIZE_STRIPPED 过滤器
- PHP log() 函数
- PHP tan() 函数
- PHP connection_status() 函数
- PHP mysqli_fetch_assoc() 函数
- PHP mysqli_field_count() 函数
- PHP mysqli_multi_query() 函数
- PDO::setAttribute
- PHP str_getcsv() 函数
- PHP stristr() 函数
- PHP strrev() 函数
- PHP trim() 函数
- PHP utf8_encode() 函数
- PHP xml_set_unparsed_entity_decl_handler() 函数