Home
last modified time | relevance | path

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

12345678910>>...13

/PHP-5.3/ext/dba/tests/
H A Dbug49125.phpt5 $handler = 'db4';
13 $handler = 'db4';
H A Dbug36436.phpt5 $handler = 'db4';
11 $handler = 'db4';
/PHP-5.3/Zend/tests/
H A Dbug55007.phpt8 …ame) eval('class MyErrorHandler { function __construct() { print "My error handler runs.\n"; } }');
23 My error handler runs.
H A Dbug61767.phpt6 echo "Error handler called ($msg)\n";
18 Error handler called (Undefined variable: undefined)
H A Dbug38047.phpt2 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 Dexception_handler_001.phpt2 exception handler tests - 1
H A Dbug48004.phpt2 Bug #48004 (Error handler prevents creation of default object)
/PHP-5.3/ext/curl/tests/
H A Dcurl_setopt_array_basic.phpt17 // Figure out what handler to use
33 // curl handler
36 // options for the curl handler
/PHP-5.3/ext/pcntl/tests/
H A Dpcntl_signal_dispatch.phpt14 pcntl_signal(SIGTERM, function ($signo) { echo "Signal handler called!\n"; });
25 Signal handler called!
/PHP-5.3/sapi/apache_hooks/
H A Dmod_php5.c274 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 DREADME42 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 Dphp_apache_http.h44 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 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-5.3/ext/date/tests/
H A DDateTime_compare_basic1.phpt2 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 Dlocal_infile_tools.inc91 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 Dxml011.phpt24 echo "\nChange to empty end handler\n";
69 Change to empty end handler
H A Dxml_set_processing_instruction_handler_basic.phpt11 …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 Dxml_parser_set_option_basic.phpt11 /* 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 Dxml_set_start_namespace_decl_handler_basic.phpt11 /* 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 Dob_013.phpt32 [0] => default output handler
55 [name] => default output handler
/PHP-5.3/ext/sybase_ct/tests/
H A Dtest_msghandler.phpt2 Sybase-CT server message handler
18 echo 'Instance method: '; sybase_set_messagehandler_ex(array(new sybase(), 'handler'));
/PHP-5.3/sapi/apache2handler/
H A Dsapi_apache2.c570 …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 Dxpath.c82 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 Dbug23279.phpt2 Bug #23279 (exception handler stops after first function call)

Completed in 40 milliseconds

12345678910>>...13