mirror of
https://github.com/php/php-src.git
synced 2025-01-07 11:34:09 +08:00
49 lines
921 B
PHP
49 lines
921 B
PHP
--TEST--
|
|
constructor test
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
include "connect.inc";
|
|
|
|
/* class 1 calls parent constructor */
|
|
class mysql1 extends mysqli {
|
|
function __construct() {
|
|
global $host, $user, $passwd;
|
|
parent::__construct($host, $user, $passwd, "test");
|
|
}
|
|
}
|
|
|
|
/* class 2 has an own constructor */
|
|
class mysql2 extends mysqli {
|
|
|
|
function __construct() {
|
|
global $host, $user, $passwd;
|
|
$this->connect($host, $user, $passwd, "test");
|
|
}
|
|
}
|
|
|
|
/* class 3 has no constructor */
|
|
class mysql3 extends mysqli {
|
|
|
|
}
|
|
|
|
$foo[0] = new mysql1();
|
|
$foo[1] = new mysql2();
|
|
$foo[2] = new mysql3($host, $user, $passwd, "test");
|
|
|
|
|
|
for ($i=0; $i < 3; $i++) {
|
|
if (($result = $foo[$i]->query("SELECT DATABASE()"))) {
|
|
$row = $result->fetch_row();
|
|
printf("%d: %s\n", $i, $row[0]);
|
|
$result->close();
|
|
}
|
|
$foo[$i]->close();
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
0: test
|
|
1: test
|
|
2: test
|