PHP mysqli_init() 函数
PHP mysqli_init() 函数
实例
mysqli_init() 函数的使用:
<?php
$con=mysqli_init();
if (!$con)
{
die("mysqli_init failed");
}
if (!mysqli_real_connect($con,"localhost","my_user","my_password","my_db"))
{
die("Connect Error: " . mysqli_connect_error());
}
mysqli_close($con);
?>
$con=mysqli_init();
if (!$con)
{
die("mysqli_init failed");
}
if (!mysqli_real_connect($con,"localhost","my_user","my_password","my_db"))
{
die("Connect Error: " . mysqli_connect_error());
}
mysqli_close($con);
?>
定义和用法
mysqli_init() 函数初始化 MySQLi 并返回 mysqli_real_connect() 使用的对象。
语法
mmysqli_init();
技术细节
返回值: | 返回一个对象。 |
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP 简介
- PHP 命名空间 namespace
- PHP $_POST 变量
- PHP 错误处理
- PHP JSON
- PHP array_chunk() 函数
- PHP array_combine() 函数
- PHP array_filter() 函数
- PHP array_intersect() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_merge() 函数
- PHP array_push() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_values() 函数
- PHP array_walk_recursive() 函数
- PHP count() 函数
- PHP current() 函数
- PHP ksort() 函数
- PHP prev() 函数
- PHP shuffle() 函数