/php-src/ext/pdo_sqlite/tests/subclasses/ |
H A D | pdo_sqlite_createafunction_arg_error.phpt | 2 Test Pdo\Sqlite::createFunction() arguments error 19 $db->createFunction(null, [new TrampolineTest(), 'strtoupper']); 25 $db->createFunction('strtoupper', null); 31 $db->createFunction('strtoupper', [new TrampolineTest(), 'strtoupper'], null); 37 $db->createFunction('strtoupper', [new TrampolineTest(), 'strtoupper'], 1, null); 45 Pdo\Sqlite::createFunction(): Argument #1 ($function_name) must be of type string, null given 46 Pdo\Sqlite::createFunction(): Argument #2 ($callback) must be a valid callback, no array or string … 47 Pdo\Sqlite::createFunction(): Argument #3 ($num_args) must be of type int, null given 48 Pdo\Sqlite::createFunction(): Argument #4 ($flags) must be of type int, null given
|
H A D | pdo_sqlite_createafunction_trampoline.phpt | 2 Test Pdo\Sqlite::createFunction() trampoline callback 21 var_dump($db->createFunction('strtoupper', [new TrampolineTest(), 'strtoupper']));
|
H A D | pdo_sqlite_createfunction_with_flags.phpt | 2 PDO_sqlite: Testing createFunction() with flags 16 $db->createFunction('testing', function($v) { return strtolower($v); }, 1, Pdo\Sqlite::DETERMINISTI…
|
H A D | pdosqlite_001.phpt | 15 $db->createFunction('testing', function($v) { return strtolower($v); }, 1, Pdo\Sqlite::DETERMINISTI…
|
H A D | gc.phpt | 21 $obj->a->createFunction('func1', function() use ($obj) {}, 1);
|
H A D | pdosqlite_002.phpt | 17 $db->createFunction('testing', function($v) { return strtolower($v); }, 1, Pdo\Sqlite::DETERMINISTI…
|
/php-src/ext/sqlite3/tests/ |
H A D | sqlite3_trampoline_createfunction_no_leak.phpt | 2 SQLite3::createFunction use F ZPP for trampoline callback and does not leak 48 TypeError: SQLite3::createFunction(): Argument #1 ($name) must be of type string, stdClass given 49 TypeError: SQLite3::createFunction(): Argument #3 ($argCount) must be of type int, stdClass given
|
H A D | gh11878.phpt | 16 $this->sqlite->createFunction("func", array($this, "SQLiteIndex"), 0); 17 $this->sqlite->createFunction("func_closure", fn () => 0, 0);
|
H A D | sqlite3_08_udf.phpt | 2 SQLite3::createFunction 24 var_dump($db->createFunction('my_udf_md5', 'my_udf_md5'));
|
H A D | sqlite3_29_createfunction.phpt | 2 SQLite3::createFunction - Basic test
|
H A D | sqlite3_trampoline_createfunction.phpt | 2 SQLite3::createFunction trampoline callback
|
H A D | sqlite3_37_createfunction_flags.phpt | 2 SQLite3::createFunction - Test with flags
|
H A D | bug72668.phpt | 12 $db->createFunction('my_udf_md5', 'my_udf_md5');
|
H A D | sqlite3_trampoline_createcollation_no_leak.phpt | 2 SQLite3::createFunction use F ZPP for trampoline callback and does not leak
|
/php-src/ext/pdo_sqlite/ |
H A D | pdo_sqlite.stub.php | 47 public function createFunction( function in Pdo\\Sqlite
|
H A D | pdo_sqlite_arginfo.h | 39 ZEND_METHOD(Pdo_Sqlite, createFunction); 48 ZEND_ME(Pdo_Sqlite, createFunction, arginfo_class_Pdo_Sqlite_createFunction, ZEND_ACC_PUBLIC)
|
H A D | pdo_sqlite.c | 64 PHP_METHOD(Pdo_Sqlite, createFunction) in PHP_METHOD() argument
|
/php-src/ext/sqlite3/ |
H A D | sqlite3.stub.php | 223 …public function createFunction(string $name, callable $callback, int $argCount = -1, int $flags = … function in SQLite3
|
H A D | sqlite3_arginfo.h | 188 ZEND_METHOD(SQLite3, createFunction); 235 ZEND_ME(SQLite3, createFunction, arginfo_class_SQLite3_createFunction, ZEND_ACC_PUBLIC)
|
H A D | sqlite3.c | 938 PHP_METHOD(SQLite3, createFunction) in PHP_METHOD() argument
|