mirror of
https://github.com/php/php-src.git
synced 2025-01-18 01:33:44 +08:00
25 lines
405 B
PHP
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
|