xref: /php-src/ext/pdo_sqlite/tests/gc.phpt (revision 74859783)
1--TEST--
2GC support for PDO Sqlite driver data
3--EXTENSIONS--
4pdo_sqlite
5--FILE--
6<?php
7
8class Obj {
9	public $a;
10	public function callback() { }
11}
12
13$obj = new Obj;
14$obj->a = new PDO('sqlite::memory:');
15$obj->a->sqliteCreateFunction('func1', function() use ($obj) {}, 1);
16$obj->a->sqliteCreateAggregate('func2', function() use ($obj) {}, function() use($obj) {});
17$obj->a->sqliteCreateCollation('col', function() use ($obj) {});
18
19?>
20===DONE===
21--EXPECT--
22===DONE===
23