/PHP-5.3/ext/dba/tests/ |
H A D | bug49125.phpt | 5 $handler = 'db4'; 13 $handler = 'db4';
|
H A D | bug36436.phpt | 5 $handler = 'db4'; 11 $handler = 'db4';
|
/PHP-5.3/Zend/tests/ |
H A D | bug55007.phpt | 8 …ame) eval('class MyErrorHandler { function __construct() { print "My error handler runs.\n"; } }'); 23 My error handler runs.
|
H A D | bug61767.phpt | 6 echo "Error handler called ($msg)\n"; 18 Error handler called (Undefined variable: undefined)
|
H A D | bug38047.phpt | 2 Bug #38047 ("file" and "line" sometimes not set in backtrace from inside error handler) 38 //This will not create file and line items for the call into the error handler
|
H A D | exception_handler_001.phpt | 2 exception handler tests - 1
|
H A D | bug48004.phpt | 2 Bug #48004 (Error handler prevents creation of default object)
|
/PHP-5.3/ext/curl/tests/ |
H A D | curl_setopt_array_basic.phpt | 17 // Figure out what handler to use 33 // curl handler 36 // options for the curl handler
|
/PHP-5.3/ext/pcntl/tests/ |
H A D | pcntl_signal_dispatch.phpt | 14 pcntl_signal(SIGTERM, function ($signo) { echo "Signal handler called!\n"; }); 25 Signal handler called!
|
/PHP-5.3/sapi/apache_hooks/ |
H A D | mod_php5.c | 274 void (*handler)(int); in sapi_apache_read_post() local 296 signal(SIGPIPE, handler); in sapi_apache_read_post() 937 php_handler *handler; in php_set_server_handler() local 939 handler->type = handler_type; in php_set_server_handler() 940 handler->stage = handler_stage; in php_set_server_handler() 941 handler->name = strdup(arg1); in php_set_server_handler() 956 php_handler *handler; in php_set_dir_handler() local 958 handler->type = handler_type; in php_set_dir_handler() 959 handler->stage = handler_stage; in php_set_dir_handler() 960 handler->name = strdup(arg1); in php_set_dir_handler() [all …]
|
H A D | README | 42 AddHandler php-script = set's up a special type handler 48 All handlers may be stacked, i.e. you can list multiple handler directives 54 So, to set up a 'hello world' location handler (so that any request to 84 handler 145 So, a uri handler to redirect all non-local traffic to /404.php (an 191 being handled by the standard application/x-httpd-php handler.
|
H A D | php_apache_http.h | 44 int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRMLS_DC);
|
/PHP-5.3/ext/standard/tests/general_functions/ |
H A D | bug44295-win.phpt | 2 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 D | bug44295.phpt | 2 user defined error handler + set_error_handling(EH_THROW) 13 function my_error_handler() {$a = func_get_args(); print "in error handler\n"; }
|
/PHP-5.3/ext/date/tests/ |
H A D | DateTime_compare_basic1.phpt | 2 Test of compare object handler for DateTime objects 6 echo "Simple test for DateTime compare object handler\n"; 54 Simple test for DateTime compare object handler
|
/PHP-5.3/ext/mysqli/tests/ |
H A D | local_infile_tools.inc | 91 function try_handler($offset, $link, $file, $handler, $expected = null) { 93 if ('default' == $handler) { 95 } else if (!mysqli_set_local_infile_handler($link, $handler)) { 96 printf("[%03d] Cannot set infile handler to '%s'\n", $offset, $handler); 99 printf("Callback set to '%s'\n", $handler);
|
/PHP-5.3/ext/xml/tests/ |
H A D | xml011.phpt | 24 echo "\nChange to empty end handler\n"; 69 Change to empty end handler
|
H A D | xml_set_processing_instruction_handler_basic.phpt | 11 …pe : proto bool xml_set_processing_instruction_handler ( resource $parser , callback $handler ) 12 * Description: Sets the processing instruction (PI) handler function for the XML parser.
|
H A D | xml_parser_set_option_basic.phpt | 11 /* Prototype : proto bool xml_set_notation_decl_handler ( resource $parser , callback $handler ) 12 * Description: Sets the notation declaration handler function for the XML parser.
|
H A D | xml_set_start_namespace_decl_handler_basic.phpt | 11 /* Prototype : bool xml_set_start_namespace_decl_handler ( resource $parser , callback $handler … 12 * Description: Set up start namespace declaration handler.
|
/PHP-5.3/tests/output/ |
H A D | ob_013.phpt | 32 [0] => default output handler 55 [name] => default output handler
|
/PHP-5.3/ext/sybase_ct/tests/ |
H A D | test_msghandler.phpt | 2 Sybase-CT server message handler 18 echo 'Instance method: '; sybase_set_messagehandler_ex(array(new sybase(), 'handler'));
|
/PHP-5.3/sapi/apache2handler/ |
H A D | sapi_apache2.c | 570 …if (strcmp(r->handler, PHP_MAGIC_TYPE) && strcmp(r->handler, PHP_SOURCE_MAGIC_TYPE) && strcmp(r->h… in php_handler() 572 if (!AP2(xbithack) || strcmp(r->handler, "text/html") || !(r->finfo.protection & APR_UEXECUTE)) { in php_handler() 627 if (parent_req && parent_req->handler && in php_handler() 628 strcmp(parent_req->handler, PHP_MAGIC_TYPE) && in php_handler() 629 strcmp(parent_req->handler, PHP_SOURCE_MAGIC_TYPE) && in php_handler() 630 strcmp(parent_req->handler, PHP_SCRIPT)) { in php_handler() 656 if (strncmp(r->handler, PHP_SOURCE_MAGIC_TYPE, sizeof(PHP_SOURCE_MAGIC_TYPE) - 1) == 0) { in php_handler()
|
/PHP-5.3/ext/dom/ |
H A D | xpath.c | 82 zval handler; in dom_xpath_ext_function_php() local 196 INIT_PZVAL(&handler); in dom_xpath_ext_function_php() 197 ZVAL_STRING(&handler, obj->stringval, 1); in dom_xpath_ext_function_php() 200 fci.function_name = &handler; in dom_xpath_ext_function_php() 206 if (!zend_make_callable(&handler, &callable TSRMLS_CC)) { in dom_xpath_ext_function_php() 216 if (Z_TYPE(handler) == IS_STRING) { in dom_xpath_ext_function_php() 217 … php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", Z_STRVAL_P(&handler)); in dom_xpath_ext_function_php() 247 zval_dtor(&handler); in dom_xpath_ext_function_php()
|
/PHP-5.3/tests/lang/ |
H A D | bug23279.phpt | 2 Bug #23279 (exception handler stops after first function call)
|