php-src/ext/pdo_sqlite/tests/bug46542.phpt
2009-04-25 21:44:33 +00:00

25 lines
405 B
PHP

--TEST--
Bug #46542 Extending PDO class with a __call() function
--SKIPIF--
<?php # vim:ft=php
if (!extension_loaded('pdo_sqlite')) print 'skip not loaded';
?>
--FILE--
<?php
class A extends PDO
{ function __call($m, $p) {print __CLASS__."::$m\n";} }
$a = new A('sqlite:' . __DIR__ . '/dummy.db');
$a->truc();
$a->TRUC();
?>
--CLEAN--
<?php
unlink(__DIR__ . '/dummy.db');
?>
--EXPECT--
A::truc
A::TRUC