1
0
mirror of https://github.com/php/php-src.git synced 2026-04-01 21:22:13 +02:00
Files
archived-php-src/ext/pdo_sqlite/tests/bug_47769.phpt
Nikita Popov 584dc19df1 Move tests requiring pdo_sqlite into ext directory
If the test is written against a specific PDO driver, it should
not be part of the generic ext/pdo tests.
2021-06-14 15:01:16 +02:00

40 lines
785 B
PHP

--TEST--
PDO Common: Bug #47769 (Strange extends PDO)
--EXTENSIONS--
pdo_sqlite
--FILE--
<?php
class test extends PDO
{
protected function isProtected() {
echo "this is a protected method.\n";
}
private function isPrivate() {
echo "this is a private method.\n";
}
public function quote($str, $paramtype = NULL): string|false {
$this->isProtected();
$this->isPrivate();
print $str ."\n";
return $str;
}
}
$test = new test('sqlite::memory:');
$test->quote('foo');
$test->isProtected();
?>
--EXPECTF--
this is a protected method.
this is a private method.
foo
Fatal error: Uncaught Error: Call to protected method test::isProtected() from global scope in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d