Home
last modified time | relevance | path

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

12345678910>>...15

/PHP-5.5/ext/dba/tests/
H A Ddba_db4_000.phpt2 DBA DB4 handler test
5 $handler = 'db4';
10 $handler = 'db4';
20 database handler: db4
H A Ddba_dbm.phpt2 DBA DBM handler test
5 $handler = 'dbm';
10 $handler = 'dbm';
16 database handler: dbm
H A Ddba_flatfile.phpt2 DBA FlatFile handler test
5 $handler = 'flatfile';
10 $handler = 'flatfile';
20 database handler: flatfile
H A Ddba_inifile.phpt2 DBA INIFILE handler test
5 $handler = 'inifile';
10 $handler = 'inifile';
16 database handler: inifile
H A Ddba_ndbm.phpt2 DBA NDBM handler test
5 $handler = 'ndbm';
10 $handler = 'ndbm';
16 database handler: ndbm
H A Ddba_db4_018.phpt5 $handler = "db4";
7 die("info $HND handler used");
12 $handler = "db4";
14 echo "database handler: $handler\n";
59 database handler: db4
H A Ddba015.phpt5 $handler = "flatfile";
7 die("info $HND handler used");
12 $handler = "flatfile";
14 echo "database handler: $handler\n";
59 database handler: flatfile
H A Ddba_tcadb.phpt2 DBA TCADB handler test
5 $handler = 'tcadb';
10 $handler = 'tcadb';
20 database handler: tcadb
H A Dbug48240.phpt5 $handler = 'db4';
11 $handler = 'db4';
H A Dbug49125.phpt5 $handler = 'db4';
13 $handler = 'db4';
/PHP-5.5/Zend/
H A DOBJECTS2_HOWTO12 handle for it, set handle and handler table as needed. Note that the
16 2. Overriding create_object handler for class. E.g.:
21 The create_object handler function should create a new zval, create
22 new object and get the handle for it, set handle and handler table as
24 constructor call. The get_constructor handler table entry should be
26 to it from get_constructor handler.
45 meant to be changed. The handler returns zval * with the value.
57 Otherwise this handler should be NULL and the engine will use
66 referencing for your objects, you can set this handler to NULL.
75 would be accessed using write handler.
[all …]
/PHP-5.5/tests/lang/
H A Dcompare_objects_basic1.phpt2 Test standard 'compare' object handler
7 echo "Simple test for standard compare object handler\n";
27 // Define a bunch of objects all of which will use standard compare object handler
48 Simple test for standard compare object handler
/PHP-5.5/ext/session/tests/
H A Dsession_set_save_handler_class_008.phpt14 …* Prototype : bool session_set_save_handler(SessionHandler $handler [, bool $register_shutdown_fun…
46 $handler = new MySession(1);
47 session_set_save_handler($handler);
53 $handler->finish();
H A Dsession_set_save_handler_class_010.phpt14 …* Prototype : bool session_set_save_handler(SessionHandler $handler [, bool $register_shutdown_fun…
46 $handler = new MySession(1);
47 session_set_save_handler($handler, false);
48 register_shutdown_function(array($handler, 'finish'));
H A Dsession_set_save_handler_class_009.phpt14 …* Prototype : bool session_set_save_handler(SessionHandler $handler [, bool $register_shutdown_fun…
46 $handler = new MySession(1);
47 session_set_save_handler($handler);
H A Dsession_set_save_handler_class_011.phpt14 …* Prototype : bool session_set_save_handler(SessionHandler $handler [, bool $register_shutdown_fun…
51 $handler = new MySession(1);
52 session_set_save_handler($handler, false);
/PHP-5.5/ext/spl/examples/
H A Ddbareader.inc25 * Open database $file with $handler in read only mode.
28 * @param handler Handler to use for database access.
30 function __construct($file, $handler) {
31 if (!$this->db = dba_open($file, 'r', $handler)) {
H A Ddbaarray.inc23 * Open database $file with $handler in read only mode.
26 * @param handler Handler to use for database access.
28 function __construct($file, $handler)
30 $this->db = dba_popen($file, "c", $handler);
/PHP-5.5/sapi/apache2handler/
H A Dconfig.w324 ARG_ENABLE('apache2handler', 'Build Apache 2.x handler', 'no');
22 ARG_ENABLE('apache2-2handler', 'Build Apache 2.2.x handler', 'no');
41 ARG_ENABLE('apache2-4handler', 'Build Apache 2.4.x handler', 'no');
/PHP-5.5/Zend/tests/
H A Dbug64960.phpt11 // this triggers the custom error handler
19 // exception must be throwed from error handler.
28 // trigger error handler
H A Dbug47714.phpt6 eval('class handler {
20 $h = new handler();
H A Dbug55007.phpt8 …ame) eval('class MyErrorHandler { function __construct() { print "My error handler runs.\n"; } }');
23 My error handler runs.
/PHP-5.5/ext/sybase_ct/tests/
H A Dtest.inc39 function handler($msgnumber, $severity, $state, $line, $text) {
46 // {{{ void sybase_set_messagehandler_ex(string handler)
47 // Sets the sybase message handler and dumps the result
48 function sybase_set_messagehandler_ex($handler) {
49 var_dump(sybase_set_message_handler($handler));
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug50762.phpt2 Bug #50762 (in WSDL mode Soap Header handler function only being called if defined in WSDL)
13 return 'header handler ' . ($this->auth ? 'called' : 'not called');
47 header handler called
/PHP-5.5/ext/standard/tests/assert/
H A Dassert_error1.phpt15 function handler($errno, $errstr) {
16 echo "in handler()\n\n";
34 //Catch recoverable error with handler

Completed in 34 milliseconds

12345678910>>...15