Home
last modified time | relevance | path

Searched refs:handler (Results 76 – 100 of 339) sorted by relevance

12345678910>>...14

/PHP-8.3/Zend/tests/weakrefs/
H A Dgh13612.phpt13 $handler = new class($this) {
28 $this->ownerDestructorHandlers[] = $handler;
/PHP-8.3/ext/session/tests/user_session_module/
H A Dsession_set_save_handler_class_010.phpt40 $handler = new MySession(1);
41 session_set_save_handler($handler, false);
42 register_shutdown_function(array($handler, 'finish'));
H A Dbug63379.phpt13 $handler = new SessionHandler;
14 session_set_save_handler($handler);
H A Dbug63379_nodestroy.phpt13 $handler = new SessionHandler;
14 session_set_save_handler($handler);
H A Dsession_set_save_handler_variation1.phpt26 Warning: session_module_name(): Session handler module "" cannot be found in %s on line %d
30 Warning: session_module_name(): Session handler module "blah" cannot be found in %s on line %d
H A Dgh9584.phpt47 $handler = new MySessionHandler();
48 session_set_save_handler($handler);
/PHP-8.3/Zend/tests/
H A Dbug64960.phpt11 // this triggers the custom error handler
19 // exception must be thrown from error handler.
28 // trigger error handler
H A Dbug55007.phpt8 …ame) eval('class MyErrorHandler { function __construct() { print "My error handler runs.\n"; } }');
23 My error handler runs.
H A Drecord_errors_001.phpt2 Error recording in error handler
5 if (getenv('SKIP_PRELOAD')) die('skip Error handler not active during preloading');
H A Dbug61767.phpt6 echo "Error handler called ($msg)\n";
19 Error handler called (Undefined variable $undefined)
/PHP-8.3/ext/zend_test/tests/
H A Dobserver_retval_04.phpt26 return 'This gets ' . $what . ' in the return handler when unused'; // Refcounted + IS_VAR
49 </bar:'This gets freed in the return handler when unused'>
51 </bar:'This gets freed in the return handler when unused'>
/PHP-8.3/ext/curl/tests/
H A Dcurl_setopt_array_basic.phpt16 // Figure out what handler to use
33 // curl handler
36 // options for the curl handler
/PHP-8.3/ext/reflection/tests/
H A Dbug76536.phpt2 Bug #76536 (PHP crashes with core dump when throwing exception in error handler)
5 if (getenv('SKIP_PRELOAD')) die('skip Error handler not available during preloading');
/PHP-8.3/Zend/tests/match/
H A D029.phpt7 throw new Exception("Custom error handler: $message");
19 Fatal error: Uncaught Exception: Custom error handler: Undefined variable $undefVar in %s029.php:4
H A D030.phpt7 throw new Exception("Custom error handler: $message");
19 Fatal error: Uncaught Exception: Custom error handler: Undefined variable $undefVar in %s030.php:4
/PHP-8.3/Zend/tests/bug67436/
H A Dbug67436.phpt2 bug67436: Autoloader isn't called if user defined error handler is present
6 <?php if (extension_loaded('Zend OPCache')) die('skip Opcache overrides error handler'); ?>
/PHP-8.3/ext/standard/tests/general_functions/
H A Dbug44295-win.phpt2 user defined error handler + set_error_handling(EH_THROW)
13 function my_error_handler() {$a = func_get_args(); print "in error handler\n"; }
H A Dbug44295.phpt2 user defined error handler + set_error_handling(EH_THROW)
13 function my_error_handler() {$a = func_get_args(); print "in error handler\n"; }
/PHP-8.3/ext/dba/tests/
H A Ddba_db1.phpt2 DBA DB1 handler test
15 $handler = 'db1';
16 run_standard_tests($handler, $db_name);
H A Ddba_db2.phpt2 DBA DB2 handler test
15 $handler = 'db2';
16 run_standard_tests($handler, $db_name);
H A Ddba_db3.phpt2 DBA DB3 handler test
15 $handler = 'db3';
16 run_standard_tests($handler, $db_name);
H A Ddba_flatfile.phpt2 DBA FlatFile handler test
15 $handler = 'flatfile';
16 run_standard_tests($handler, $db_name);
H A Ddba_ndbm.phpt2 DBA NDBM handler test
15 $handler = 'ndbm';
16 set_up_db($handler, $db_name, false /* Locking done by the library */);
17 run_standard_tests($handler, $db_name, false /* Locking done by the library */);
125 Warning: dba_open(): Locking cannot be disabled for handler ndbm in %s on line %d
/PHP-8.3/ext/dba/
H A Ddba.stub.php16 function dba_popen(string $path, string $mode, ?string $handler = null, int $permission = 0o644, in… argument
19 function dba_open(string $path, string $mode, ?string $handler = null, int $permission = 0o644, int… argument
/PHP-8.3/ext/mysqli/tests/
H A Dlocal_infile_tools.inc89 function try_handler($offset, $link, $file, $handler, $expected = null) {
91 if ('default' == $handler) {
93 } else if (!mysqli_set_local_infile_handler($link, $handler)) {
94 printf("[%03d] Cannot set infile handler to '%s'\n", $offset, $handler);
97 printf("Callback set to '%s'\n", $handler);

Completed in 25 milliseconds

12345678910>>...14