mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
28 lines
657 B
PHP
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===
|