Home
last modified time | relevance | path

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

12345678910

/PHP-7.4/ext/pdo/tests/
H A Dpdo_011.phpt15 $db = PDOTest::factory();
50 static public function factory($id, $val)
75 var_dump($select2->fetchAll(PDO::FETCH_FUNC, array($f, 'factory')));
147 Test1::factory(1,A)
149 Test1::factory(2,B)
151 Test1::factory(3,C)
153 Test1::factory(4,D)
185 Test1::factory(1,A)
187 Test1::factory(2,B)
189 Test1::factory(3,C)
[all …]
H A Dpdo_test.inc21 static function factory($classname = 'PDO', $drop_test_tables = true) {
62 $db = PDOTest::factory();
73 return self::factory();
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug_pecl_12925.phpt9 $db = MySQLPDOTest::factory();
14 $db = MySQLPDOTest::factory();
33 $db = MySQLPDOTest::factory();
38 $db = MySQLPDOTest::factory();
H A Dbug_pecl_7976.phpt9 $db = MySQLPDOTest::factory();
24 $db = MySQLPDOTest::factory();
42 $db = MySQLPDOTest::factory();
47 $db = MySQLPDOTest::factory();
56 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_prepare_native_column.phpt8 $db = MySQLPDOTest::factory();
13 $db = MySQLPDOTest::factory();
34 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_attr_prefetch.phpt8 $db = MySQLPDOTest::factory();
13 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_phpinfo.phpt8 $db = MySQLPDOTest::factory();
13 $db = MySQLPDOTest::factory();
H A Dbug53551.phpt8 $db = MySQLPDOTest::factory();
13 $db = MySQLPDOTest::factory();
46 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_attr_driver_name.phpt8 $db = MySQLPDOTest::factory();
13 $db = MySQLPDOTest::factory();
H A Dbug_42499.phpt11 $db = MySQLPDOTest::factory();
25 $db = MySQLPDOTest::factory();
43 $db = MySQLPDOTest::factory();
49 $db = MySQLPDOTest::factory();
54 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_attr_connection_status.phpt8 $db = MySQLPDOTest::factory();
13 $db = MySQLPDOTest::factory();
H A Dbug79596.phpt16 $pdo = MySQLPDOTest::factory();
26 $pdo = MySQLPDOTest::factory();
H A Dbug_41125.phpt9 $db = MySQLPDOTest::factory();
24 $db = MySQLPDOTest::factory();
44 $db = MySQLPDOTest::factory();
H A Dbug70862.phpt12 $db = MySQLPDOTest::factory();
41 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_connect_charset.phpt14 $link = MySQLPDOTest::factory();
23 $link = MySQLPDOTest::factory('PDO', false, null, Array('charset' => $new_charset));
H A Dbug_39858.phpt9 $db = MySQLPDOTest::factory();
26 $db = MySQLPDOTest::factory();
70 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_attr_client_version.phpt8 $db = MySQLPDOTest::factory();
13 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_interface.phpt8 $db = MySQLPDOTest::factory();
15 $db = MySQLPDOTest::factory();
H A Dbug_61411.phpt9 $db = MySQLPDOTest::factory();
35 $db = MySQLPDOTest::factory();
H A Dpdo_mysql_commit.phpt8 $db = MySQLPDOTest::factory();
15 $db = MySQLPDOTest::factory();
56 $db = MySQLPDOTest::factory();
85 $db = MySQLPDOTest::factory();
/PHP-7.4/tests/lang/
H A Dbug21669.phpt18 $factory = new Factory;
19 $test = $factory->create();
/PHP-7.4/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-7.4/Zend/tests/
H A Dbug43175.phpt20 echo "__call via traditional factory should be caught\n";
24 __call via traditional factory should be caught
/PHP-7.4/main/streams/
H A Dfilter.c45 …stream_filter_register_factory(const char *filterpattern, const php_stream_filter_factory *factory) in php_stream_filter_register_factory() argument
49 ret = zend_hash_add_ptr(&stream_filters_hash, str, (void*)factory) ? SUCCESS : FAILURE; in php_stream_filter_register_factory()
60 …ter_register_factory_volatile(zend_string *filterpattern, const php_stream_filter_factory *factory) in php_stream_filter_register_factory_volatile() argument
68 return zend_hash_add_ptr(FG(stream_filters), filterpattern, (void*)factory) ? SUCCESS : FAILURE; in php_stream_filter_register_factory_volatile()
225 const php_stream_filter_factory *factory = NULL; in php_stream_filter_create() local
232 if (NULL != (factory = zend_hash_str_find_ptr(filter_hash, filtername, n))) { in php_stream_filter_create()
233 filter = factory->create_filter(filtername, filterparams, persistent); in php_stream_filter_create()
245 if (NULL != (factory = zend_hash_str_find_ptr(filter_hash, wildname, strlen(wildname)))) { in php_stream_filter_create()
246 filter = factory->create_filter(filtername, filterparams, persistent); in php_stream_filter_create()
257 if (factory == NULL) in php_stream_filter_create()

Completed in 54 milliseconds

12345678910