mysqli::init

mysqli_init

(PHP 5, PHP 7)

mysqli::init -- mysqli_initInitializes MySQLi and returns a resource for use with mysqli_real_connect()

설명

객체 기반 형식

mysqli mysqli::init ( void )

절차식 형식

mysqli mysqli_init ( void )

Allocates or initializes a MYSQL object suitable for mysqli_options() and mysqli_real_connect().

Note:

Any subsequent calls to any mysqli function (except mysqli_options()) will fail until mysqli_real_connect() was called.

반환값

Returns an object.

예제

See mysqli_real_connect().

참고

add a note add a note

User Contributed Notes 1 note

up
-5
Dub B.
4 years ago
<?php

$SQL
= new mysqli// create copy class

# optional
//$SQL -> options(MYSQLI_OPT_INT_AND_FLOAT_NATIVE, 1);
   
$SQL -> real_connect('127.0.0.1', 'root', 'pass', 'database');
   
$SQL_Err = $SQL->connect_errno;
   
if(
$SQL_Err) // if error
   
exit('Error');

?>
To Top