update : 2015.11.03
php.shukuma.com검색:
|
mysqli::__constructmysqli_connect(PHP 5) mysqli::__construct -- mysqli_connect — Open a new connection to the MySQL server 설명객체 기반 형식
mysqli::__construct
([ string
$host = ini_get("mysqli.default_host")
[, string $username = ini_get("mysqli.default_user")
[, string $passwd = ini_get("mysqli.default_pw")
[, string $dbname = ""
[, int $port = ini_get("mysqli.default_port")
[, string $socket = ini_get("mysqli.default_socket")
]]]]]] )절차식 형식
mysqli mysqli_connect
([ string
$host = ini_get("mysqli.default_host")
[, string $username = ini_get("mysqli.default_user")
[, string $passwd = ini_get("mysqli.default_pw")
[, string $dbname = ""
[, int $port = ini_get("mysqli.default_port")
[, string $socket = ini_get("mysqli.default_socket")
]]]]]] )Opens a connection to the MySQL Server running on. 인수
반환값Returns an object which represents the connection to a MySQL Server. 변경점
예제Example #1 mysqli::__construct() example 객체 기반 형식
<?php 객체 기반 형식 when extending mysqli class
<?php 절차식 형식
<?php 위 예제들의 출력: Success... MySQL host info: localhost via TCP/IP 주의
참고
|