forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdo_035.phpt
46 lines (42 loc) · 873 Bytes
/
pdo_035.phpt
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
--TEST--
PDO Common: PDORow + get_parent_class()
--EXTENSIONS--
pdo_sqlite
--FILE--
<?php
$db = new PDO('sqlite::memory:');
$db->exec('CREATE TABLE test (id int)');
$db->exec('INSERT INTO test VALUES (23)');
$stmt = $db->prepare('SELECT id FROM test');
$stmt->execute();
$result = $stmt->fetch(PDO::FETCH_LAZY);
echo get_class($result), "\n";
var_dump(get_parent_class($result));
try {
$result->foo = 1;
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
try {
$result[0] = 1;
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
try {
unset($result->foo);
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
try {
unset($result[0]);
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
PDORow
bool(false)
Cannot write to PDORow property
Cannot write to PDORow offset
Cannot unset PDORow property
Cannot unset PDORow offset