mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

RFC: https://wiki.php.net/rfc/pdo_driver_specific_subclasses Closes GH-12804 Co-Authored-By: Danack <Danack@basereality.com>
28 lines
655 B
PHP
28 lines
655 B
PHP
--TEST--
|
|
GC support for PDO Sqlite driver data
|
|
--EXTENSIONS--
|
|
pdo_sqlite
|
|
--FILE--
|
|
<?php
|
|
|
|
// This test was copied from the pdo_sqlite test for sqliteCreateAggregate
|
|
class Obj {
|
|
public $a;
|
|
public function callback() { }
|
|
}
|
|
|
|
$obj = new Obj;
|
|
$obj->a = Pdo::connect('sqlite::memory:');
|
|
|
|
if (!$obj->a instanceof PdoSqlite) {
|
|
echo "Wrong class type. Should be PdoSqlite but is " . get_class($obj->a) . "]\n";
|
|
}
|
|
|
|
$obj->a->createFunction('func1', function() use ($obj) {}, 1);
|
|
$obj->a->createAggregate('func2', function() use ($obj) {}, function() use($obj) {});
|
|
$obj->a->createCollation('col', function() use ($obj) {});
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|