Home
last modified time | relevance | path

Searched refs:factory (Results 1 – 25 of 253) sorted by relevance

1234567891011

/PHP-8.1/ext/pdo/tests/
H A Dpdo_011.phpt16 $db = PDOTest::factory();
51 static public function factory($id, $val)
76 var_dump($select2->fetchAll(PDO::FETCH_FUNC, array($f, 'factory')));
148 Test1::factory(1,A)
150 Test1::factory(2,B)
152 Test1::factory(3,C)
154 Test1::factory(4,D)
186 Test1::factory(1,A)
188 Test1::factory(2,B)
190 Test1::factory(3,C)
[all …]
H A Dbug_79106.phpt11 $db = PDOTest::factory();
23 $db = PDOTest::factory();
H A Dbug_79106_collision.phpt11 $db = PDOTest::factory();
23 $db = PDOTest::factory();
H A Dpdo_test.inc21 static function factory($classname = 'PDO', $drop_test_tables = true) {
64 $db = PDOTest::factory();
75 return self::factory();
/PHP-8.1/ext/pdo_mysql/tests/
H A Dbug_pecl_7976.phpt10 $db = MySQLPDOTest::factory();
25 $db = MySQLPDOTest::factory();
43 $db = MySQLPDOTest::factory();
48 $db = MySQLPDOTest::factory();
57 $db = MySQLPDOTest::factory();
H A Dbug_pecl_12925.phpt10 $db = MySQLPDOTest::factory();
15 $db = MySQLPDOTest::factory();
34 $db = MySQLPDOTest::factory();
39 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_prepare_native_column.phpt9 $db = MySQLPDOTest::factory();
14 $db = MySQLPDOTest::factory();
35 $db = MySQLPDOTest::factory();
H A Dbug_42499.phpt12 $db = MySQLPDOTest::factory();
26 $db = MySQLPDOTest::factory();
44 $db = MySQLPDOTest::factory();
50 $db = MySQLPDOTest::factory();
55 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_attr_prefetch.phpt9 $db = MySQLPDOTest::factory();
14 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_phpinfo.phpt9 $db = MySQLPDOTest::factory();
14 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_attr_driver_name.phpt9 $db = MySQLPDOTest::factory();
14 $db = MySQLPDOTest::factory();
H A Dbug53551.phpt9 $db = MySQLPDOTest::factory();
14 $db = MySQLPDOTest::factory();
47 $db = MySQLPDOTest::factory();
H A Dbug_41997.phpt10 $db = MySQLPDOTest::factory();
24 $db = MySQLPDOTest::factory();
44 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_attr_connection_status.phpt9 $db = MySQLPDOTest::factory();
14 $db = MySQLPDOTest::factory();
H A Dbug_41125.phpt10 $db = MySQLPDOTest::factory();
24 $db = MySQLPDOTest::factory();
41 $db = MySQLPDOTest::factory();
H A Dbug79596.phpt18 $pdo = MySQLPDOTest::factory();
28 $pdo = MySQLPDOTest::factory();
H A Dbug_39858.phpt10 $db = MySQLPDOTest::factory();
25 $db = MySQLPDOTest::factory();
69 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_stmt_variable_columncount.phpt9 $db = MySQLPDOTest::factory();
24 $db = MySQLPDOTest::factory();
69 $db = MySQLPDOTest::factory();
100 $db = MySQLPDOTest::factory();
124 $pdo = MySQLPDOTest::factory();
H A Dpdo_mysql_connect_charset.phpt15 $link = MySQLPDOTest::factory();
24 $link = MySQLPDOTest::factory('PDO', false, null, Array('charset' => $new_charset));
H A Dbug70862.phpt13 $db = MySQLPDOTest::factory();
42 $db = MySQLPDOTest::factory();
/PHP-8.1/tests/lang/
H A Dbug21669.phpt18 $factory = new Factory;
19 $test = $factory->create();
/PHP-8.1/tests/classes/
H A Dfactory_and_singleton_001.phpt2 ZE2 factory and singleton, test 1
11 static function factory($x) {
55 $x = test::factory(1);
56 $y = test::factory(2);
H A Dfactory_and_singleton_002.phpt2 ZE2 factory and singleton, test 2
11 static function factory($x) {
55 $x = test::factory(1);
56 $y = test::factory(2);
/PHP-8.1/Zend/tests/
H A Dbug43175.phpt20 echo "__call via traditional factory should be caught\n";
24 __call via traditional factory should be caught
/PHP-8.1/main/streams/
H A Dfilter.c43 …stream_filter_register_factory(const char *filterpattern, const php_stream_filter_factory *factory) in php_stream_filter_register_factory() argument
47 ret = zend_hash_add_ptr(&stream_filters_hash, str, (void*)factory) ? SUCCESS : FAILURE; in php_stream_filter_register_factory()
58 …ter_register_factory_volatile(zend_string *filterpattern, const php_stream_filter_factory *factory) in php_stream_filter_register_factory_volatile() argument
66 return zend_hash_add_ptr(FG(stream_filters), filterpattern, (void*)factory) ? SUCCESS : FAILURE; in php_stream_filter_register_factory_volatile()
223 const php_stream_filter_factory *factory = NULL; in php_stream_filter_create() local
230 if (NULL != (factory = zend_hash_str_find_ptr(filter_hash, filtername, n))) { in php_stream_filter_create()
231 filter = factory->create_filter(filtername, filterparams, persistent); in php_stream_filter_create()
243 if (NULL != (factory = zend_hash_str_find_ptr(filter_hash, wildname, strlen(wildname)))) { in php_stream_filter_create()
244 filter = factory->create_filter(filtername, filterparams, persistent); in php_stream_filter_create()
255 if (factory == NULL) in php_stream_filter_create()

Completed in 46 milliseconds

1234567891011