Searched refs:sqliteCreateAggregate (Results 1 – 10 of 10) sorted by relevance
/PHP-8.4/ext/pdo_sqlite/tests/ |
H A D | pdo_sqlite_createaggregate_002.phpt | 2 PDO_sqlite: Testing invalid callback for sqliteCreateAggregate() 11 $pdo->sqliteCreateAggregate('foo', 'a', ''); 16 $pdo->sqliteCreateAggregate('foo', 'strlen', ''); 23 PDO::sqliteCreateAggregate(): Argument #2 ($step) must be a valid callback, function "a" not found … 24 PDO::sqliteCreateAggregate(): Argument #3 ($finalize) must be a valid callback, function "" not fou…
|
H A D | pdo_sqlite_createaggregate.phpt | 2 PDO_sqlite: Testing sqliteCreateAggregate() 14 $db->sqliteCreateAggregate('testing', function(&$a, $b) { $a .= $b; return $a; }, function(&$v) { r…
|
H A D | gc.phpt | 16 $obj->a->sqliteCreateAggregate('func2', function() use ($obj) {}, function() use($obj) {});
|
H A D | gh13998.phpt | 16 $db->sqliteCreateAggregate('S', $step, $finalize, 1);
|
/PHP-8.4/ext/pdo_sqlite/ |
H A D | sqlite_driver_arginfo.h | 24 ZEND_METHOD(PDO_SQLite_Ext, sqliteCreateAggregate); 29 …ZEND_ME(PDO_SQLite_Ext, sqliteCreateAggregate, arginfo_class_PDO_SQLite_Ext_sqliteCreateAggregate,…
|
H A D | sqlite_driver.stub.php | 14 …public function sqliteCreateAggregate(string $name, callable $step, callable $finalize, int $numAr… function in PDO_SQLite_Ext
|
H A D | sqlite_driver.c | 623 PHP_METHOD(PDO_SQLite_Ext, sqliteCreateAggregate) in PHP_METHOD() argument
|
/PHP-8.4/ext/pdo_sqlite/tests/subclasses/ |
H A D | pdo_sqlite_createaggregate.phpt | 8 // This test was copied from the pdo_sqlite test for sqliteCreateAggregate
|
H A D | gc.phpt | 8 // This test was copied from the pdo_sqlite test for sqliteCreateAggregate
|
H A D | pdo_sqlite_createaggregate_002.phpt | 8 // This test was copied from the pdo_sqlite test for sqliteCreateAggregate
|
Completed in 23 milliseconds