/PHP-8.3/ext/pdo/tests/ |
H A D | pdo_011.phpt | 16 $db = PDOTest::factory(); 48 static public function factory($id, $val) 73 var_dump($select2->fetchAll(PDO::FETCH_FUNC, array($f, 'factory'))); 145 Test1::factory(1,A) 147 Test1::factory(2,B) 149 Test1::factory(3,C) 151 Test1::factory(4,D) 183 Test1::factory(1,A) 185 Test1::factory(2,B) 187 Test1::factory(3,C) [all …]
|
H A D | bug_79106.phpt | 11 $db = PDOTest::factory(); 23 $db = PDOTest::factory();
|
H A D | bug_79106_collision.phpt | 11 $db = PDOTest::factory(); 23 $db = PDOTest::factory();
|
H A D | pdo_test.inc | 21 static function factory($classname = 'PDO', $drop_test_tables = true) { 64 $db = PDOTest::factory(); 75 return self::factory();
|
/PHP-8.3/ext/pdo_mysql/tests/ |
H A D | bug_pecl_7976.phpt | 10 $db = MySQLPDOTest::factory(); 25 $db = MySQLPDOTest::factory(); 43 $db = MySQLPDOTest::factory(); 48 $db = MySQLPDOTest::factory(); 57 $db = MySQLPDOTest::factory();
|
H A D | bug_pecl_12925.phpt | 10 $db = MySQLPDOTest::factory(); 15 $db = MySQLPDOTest::factory(); 34 $db = MySQLPDOTest::factory(); 39 $db = MySQLPDOTest::factory();
|
H A D | pdo_mysql_prepare_native_column.phpt | 9 $db = MySQLPDOTest::factory(); 14 $db = MySQLPDOTest::factory(); 35 $db = MySQLPDOTest::factory();
|
H A D | pdo_mysql_attr_prefetch.phpt | 9 $db = MySQLPDOTest::factory(); 14 $db = MySQLPDOTest::factory();
|
H A D | pdo_mysql_phpinfo.phpt | 9 $db = MySQLPDOTest::factory(); 14 $db = MySQLPDOTest::factory();
|
H A D | bug_42499.phpt | 12 $db = MySQLPDOTest::factory(); 26 $db = MySQLPDOTest::factory(); 44 $db = MySQLPDOTest::factory(); 50 $db = MySQLPDOTest::factory(); 55 $db = MySQLPDOTest::factory();
|
H A D | pdo_mysql_attr_driver_name.phpt | 9 $db = MySQLPDOTest::factory(); 14 $db = MySQLPDOTest::factory();
|
H A D | bug53551.phpt | 9 $db = MySQLPDOTest::factory(); 14 $db = MySQLPDOTest::factory(); 47 $db = MySQLPDOTest::factory();
|
H A D | bug_41997.phpt | 10 $db = MySQLPDOTest::factory(); 24 $db = MySQLPDOTest::factory(); 44 $db = MySQLPDOTest::factory();
|
H A D | pdo_mysql_attr_connection_status.phpt | 9 $db = MySQLPDOTest::factory(); 14 $db = MySQLPDOTest::factory();
|
H A D | bug_41125.phpt | 10 $db = MySQLPDOTest::factory(); 24 $db = MySQLPDOTest::factory(); 41 $db = MySQLPDOTest::factory();
|
H A D | bug79596.phpt | 18 $pdo = MySQLPDOTest::factory(); 28 $pdo = MySQLPDOTest::factory();
|
H A D | bug_39858.phpt | 10 $db = MySQLPDOTest::factory(); 25 $db = MySQLPDOTest::factory(); 69 $db = MySQLPDOTest::factory();
|
H A D | pdo_mysql_stmt_variable_columncount.phpt | 9 $db = MySQLPDOTest::factory(); 24 $db = MySQLPDOTest::factory(); 69 $db = MySQLPDOTest::factory(); 100 $db = MySQLPDOTest::factory(); 124 $pdo = MySQLPDOTest::factory();
|
H A D | bug70862.phpt | 13 $db = MySQLPDOTest::factory(); 43 $db = MySQLPDOTest::factory();
|
H A D | pdo_mysql_connect_charset.phpt | 15 $link = MySQLPDOTest::factory(); 24 $link = MySQLPDOTest::factory('PDO', false, null, Array('charset' => $new_charset));
|
/PHP-8.3/tests/lang/ |
H A D | bug21669.phpt | 18 $factory = new Factory; 19 $test = $factory->create();
|
/PHP-8.3/tests/classes/ |
H A D | factory_and_singleton_001.phpt | 2 ZE2 factory and singleton, test 1 11 static function factory($x) { 55 $x = test::factory(1); 56 $y = test::factory(2);
|
H A D | factory_and_singleton_002.phpt | 2 ZE2 factory and singleton, test 2 11 static function factory($x) { 55 $x = test::factory(1); 56 $y = test::factory(2);
|
/PHP-8.3/Zend/tests/ |
H A D | bug43175.phpt | 20 echo "__call via traditional factory should be caught\n"; 24 __call via traditional factory should be caught
|
/PHP-8.3/main/streams/ |
H A D | filter.c | 43 …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()
|