mirror of
https://github.com/php/php-src.git
synced 2025-01-07 03:13:33 +08:00
20 lines
335 B
PHP
20 lines
335 B
PHP
--TEST--
|
|
Crash when calling a method of a class that inherits PDOStatement
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('pdo')) die('skip');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class MyStatement extends PDOStatement
|
|
{
|
|
}
|
|
|
|
$obj = new MyStatement;
|
|
var_dump($obj->foo());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Call to undefined method MyStatement::foo() in %s on line %d
|