summaryrefslogtreecommitdiff
path: root/ext/pdo/tests/pdo_036.phpt
blob: 94006c9e808b6a005cf1e46ab3e6bc272c76d6e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Testing PDORow and PDOStatement instances with Reflection
--SKIPIF--
<?php if (!extension_loaded('pdo')) die('skip'); ?>
--FILE--
<?php

$instance = new reflectionclass('pdorow');
$x = $instance->newInstance();
var_dump($x);

$instance = new reflectionclass('pdostatement');
$x = $instance->newInstance();
var_dump($x);

?>
--EXPECTF--
object(PDORow)#%d (0) {
}
object(PDOStatement)#%d (1) {
  [%u|b%"queryString"]=>
  NULL
}