summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/mysqli_fetch_object_no_constructor.phpt
blob: 9aac03195ba015703b9c850bf9ad3b7b92d0c913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
--TEST--
mysqli_fetch_object() - calling constructor on class wo constructor
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
    require_once("connect.inc");

    $tmp    = NULL;
    $link   = NULL;

    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 $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("\nException 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 (Exception $e) {
        printf("Exception: %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) {
  ["a"]=>
  NULL
  ["b"]=>
  NULL
}

Exception with mysqli. Note that at all other places we throws errors but no exceptions unless the error mode has been changed:
Exception: Class mysqli_fetch_object_test does not have a constructor hence you cannot use ctor_params

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