mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
69 lines
1.9 KiB
PHP
69 lines
1.9 KiB
PHP
--TEST--
|
|
mysqli_fetch_object() - calling constructor on class wo constructor
|
|
--EXTENSIONS--
|
|
mysqli
|
|
--SKIPIF--
|
|
<?php
|
|
require_once 'skipifconnectfailure.inc';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require 'table.inc';
|
|
if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5")) {
|
|
printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
|
|
}
|
|
|
|
class mysqli_fetch_object_test {
|
|
public $ID;
|
|
public $label;
|
|
public $a = null;
|
|
public $b = null;
|
|
|
|
public function toString() {
|
|
var_dump($this);
|
|
}
|
|
}
|
|
|
|
printf("No exception with PHP:\n");
|
|
var_dump($obj = new mysqli_fetch_object_test(1, 2));
|
|
|
|
printf("\nValueError with mysqli. Note that at all other places we throws errors but no exceptions unless the error mode has been changed:\n");
|
|
try {
|
|
var_dump($obj = mysqli_fetch_object($res, 'mysqli_fetch_object_test', array(1, 2)));
|
|
} catch (ValueError $e) {
|
|
printf("ValueError: %s\n", $e->getMessage());
|
|
}
|
|
|
|
printf("\nFatal error with PHP (but no exception!):\n");
|
|
var_dump($obj->mysqli_fetch_object_test(1, 2));
|
|
|
|
mysqli_close($link);
|
|
print "done!";
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
require_once 'clean_table.inc';
|
|
?>
|
|
--EXPECTF--
|
|
No exception with PHP:
|
|
object(mysqli_fetch_object_test)#%d (%d) {
|
|
["ID"]=>
|
|
NULL
|
|
["label"]=>
|
|
NULL
|
|
["a"]=>
|
|
NULL
|
|
["b"]=>
|
|
NULL
|
|
}
|
|
|
|
ValueError with mysqli. Note that at all other places we throws errors but no exceptions unless the error mode has been changed:
|
|
ValueError: mysqli_fetch_object(): Argument #3 ($constructor_args) must be empty when the specified class (mysqli_fetch_object_test) does not have a constructor
|
|
|
|
Fatal error with PHP (but no exception!):
|
|
|
|
Fatal error: Uncaught Error: Call to undefined method mysqli_fetch_object_test::mysqli_fetch_object_test() in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|