1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/pdo_sqlite/tests/subclasses/gc.phpt
2024-01-11 23:22:41 +01:00

29 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===