php-src/ext/pdo_sqlite/tests/subclasses/gc.phpt
2024-05-30 20:15:42 +02:00

28 lines
657 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 Pdo\Sqlite) {
echo "Wrong class type. Should be Pdo\Sqlite 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===