mirror of
https://github.com/php/php-src.git
synced 2026-04-01 21:22:13 +02:00
If the test is written against a specific PDO driver, it should not be part of the generic ext/pdo tests.
40 lines
785 B
PHP
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
|