/PHP-8.3/ext/standard/tests/strings/ |
H A D | get_html_translation_table_basic8.phpt | 7 echo "-- with table = HTML_ENTITIES, ENT_QUOTES --\n"; 8 $table = HTML_ENTITIES; 15 $table = HTML_ENTITIES; 20 $table = HTML_ENTITIES; 25 $table = HTML_SPECIALCHARS; 32 $table = HTML_SPECIALCHARS; 38 $table = HTML_SPECIALCHARS; 48 -- with table = HTML_ENTITIES, ENT_QUOTES -- 58 -- with table = HTML_ENTITIES, ENT_COMPAT -- 60 -- with table = HTML_ENTITIES, ENT_NOQUOTES -- [all …]
|
H A D | get_html_translation_table_basic9.phpt | 8 echo "-- with table = HTML_ENTITIES, ENT_QUOTES --\n"; 9 $table = HTML_ENTITIES; 16 $table = HTML_ENTITIES; 21 $table = HTML_ENTITIES; 26 $table = HTML_SPECIALCHARS; 33 $table = HTML_SPECIALCHARS; 39 $table = HTML_SPECIALCHARS; 50 -- with table = HTML_ENTITIES, ENT_QUOTES -- 60 -- with table = HTML_ENTITIES, ENT_COMPAT -- 62 -- with table = HTML_ENTITIES, ENT_NOQUOTES -- [all …]
|
H A D | get_html_translation_table_basic3.phpt | 9 // $table as HTML_SEPCIALCHARS and different quote style 10 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --\n"; 11 $table = HTML_SPECIALCHARS; 13 $tt = get_html_translation_table($table, $quote_style, "UTF-8"); 17 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --\n"; 19 $tt = get_html_translation_table($table, $quote_style, "UTF-8"); 23 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --\n"; 25 $tt = get_html_translation_table($table, $quote_style, "UTF-8"); 33 -- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT -- 44 -- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES -- [all …]
|
H A D | get_html_translation_table_basic6.phpt | 10 echo "-- with table = HTML_ENTITIES, ENT_COMPAT --\n"; 11 $table = HTML_ENTITIES; 17 echo "-- with table = HTML_ENTITIES, ENT_QUOTES --\n"; 18 $table = HTML_ENTITIES; 23 $table = HTML_ENTITIES; 28 $table = HTML_SPECIALCHARS; 35 $table = HTML_SPECIALCHARS; 41 $table = HTML_SPECIALCHARS; 51 -- with table = HTML_ENTITIES, ENT_COMPAT -- 214 -- with table = HTML_ENTITIES, ENT_QUOTES -- [all …]
|
H A D | get_html_translation_table_basic7.phpt | 7 echo "-- with table = HTML_ENTITIES, ENT_QUOTES --\n"; 8 $table = HTML_ENTITIES; 15 echo "-- with table = HTML_ENTITIES, ENT_COMPAT --\n"; 16 $table = HTML_ENTITIES; 21 $table = HTML_ENTITIES; 26 $table = HTML_SPECIALCHARS; 33 $table = HTML_SPECIALCHARS; 39 $table = HTML_SPECIALCHARS; 49 -- with table = HTML_ENTITIES, ENT_QUOTES -- 307 -- with table = HTML_ENTITIES, ENT_COMPAT -- [all …]
|
H A D | get_html_translation_table_basic4.phpt | 7 echo "-- with table = HTML_ENTITIES --\n"; 8 $table = HTML_ENTITIES; 9 $tt = get_html_translation_table($table, ENT_COMPAT, "WINDOWS-1252"); 13 echo "-- with table = HTML_SPECIALCHARS --\n"; 14 $table = HTML_SPECIALCHARS; 15 $tt = get_html_translation_table($table, ENT_COMPAT, "WINDOWS-1252"); 23 -- with table = HTML_ENTITIES -- 276 -- with table = HTML_SPECIALCHARS --
|
/PHP-8.3/ext/pgsql/tests/ |
H A D | bug68638.phpt | 14 $table='test_68638'; 16 pg_query($conn, "CREATE TABLE $table (id INT, value FLOAT)"); 18 pg_insert($conn,$table, array('id' => 1, 'value' => 1.2)); 19 pg_insert($conn,$table, array('id' => 2, 'value' => 10)); 20 pg_insert($conn,$table, array('id' => 3, 'value' => 15)); 22 var_dump(pg_update($conn,$table, array('value' => 'inf'), array('id' => 1), PGSQL_DML_STRING)); 24 pg_update($conn,$table, array('value' => 'inf'), array('id' => 1)); 25 pg_update($conn,$table, array('value' => '-inf'), array('id' => 2)); 26 pg_update($conn,$table, array('value' => '+inf'), array('id' => 3)); 28 $rs = pg_query($conn, "SELECT * FROM $table"); [all …]
|
H A D | bug72028.phpt | 9 // create test table 15 $table = "bug72028_" . md5(uniqid(time())); 17 pg_query($conn, "CREATE TABLE $table (value TEXT, details TEXT);"); 19 $sql = "INSERT INTO $table (value, details) VALUES ($1, $2)"; 32 $r = pg_query($conn, "SELECT * FROM $table"); 37 pg_query($conn, "DROP TABLE $table");
|
H A D | bug71062.phpt | 14 $table = "public.test_table_bug71062_bug71062"; 16 pg_query($db, "CREATE TABLE $table ( test_field TIMESTAMPTZ )"); 26 pg_convert($db, $table, ['test_field' => $date_string_php_iso8601]); 29 pg_convert($db, $table, ['test_field' => $date_string_modified_iso8601]); 33 pg_query($db, "DROP TABLE $table");
|
H A D | config.inc | 3 // These vars are used to connect db and create test table. 10 $table_name = "php_pgsql_test"; // test table that will be created 11 $table_name_92 = "php_pgsql_test_92"; // test table that will be created 18 // Test table
|
/PHP-8.3/ext/oci8/tests/ |
H A D | statement_type.phpt | 15 "SELECT * FROM table", 16 "DELETE FROM table WHERE id = 1", 17 "INSERT INTO table VALUES(1)", 18 "UPDATE table SET id = 1", 19 "DROP TABLE table", 21 "CREATE TABLE table (id NUMBER)", 22 "ALTER TABLE table ADD (col1 NUMBER)",
|
H A D | dupcolnames.phpt | 17 "drop table dupcolnames_tab1", 18 "drop table dupcolnames_tab2", 20 "create table dupcolnames_tab1 (c1 number, dupnamecol varchar2(20))", 21 "create table dupcolnames_tab2 (c2 number, dupnamecol varchar2(20))", 57 "drop table dupcolnames_tab1", 58 "drop table dupcolnames_tab2",
|
H A D | imp_res_cursor.phpt | 27 "drop table imp_res_cursor_tab_1", 28 "create table imp_res_cursor_tab_1 (c1 number, c2 varchar2(10))", 33 "drop table imp_res_cursor_tab_2", 34 "create table imp_res_cursor_tab_2 (c3 varchar2(1))", 83 "drop table imp_res_cursor_tab_1", 84 "drop table imp_res_cursor_tab_2"
|
H A D | imp_res_get_cursor.phpt | 27 "drop table imp_res_get_cursor_tab_1", 28 "create table imp_res_get_cursor_tab_1 (c1 number, c2 varchar2(10))", 33 "drop table imp_res_get_cursor_tab_2", 34 "create table imp_res_get_cursor_tab_2 (c3 varchar2(1))", 85 "drop table imp_res_get_cursor_tab_1", 86 "drop table imp_res_get_cursor_tab_2"
|
/PHP-8.3/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_multi_statements.phpt | 21 $table = sprintf("test_%s", md5(mt_rand(0, PHP_INT_MAX))); 25 $db->exec(sprintf('DROP TABLE IF EXISTS %s', $table)); 26 $create = sprintf('CREATE TABLE %s(id INT)', $table); 28 $db->exec(sprintf('INSERT INTO %s(id) VALUES (1)', $table)); 29 $stmt = $db->query(sprintf('SELECT * FROM %s; INSERT INTO %s(id) VALUES (2)', $table, $table)); 33 $stmt = $db->query(sprintf('SELECT id FROM %s', $table)); 43 $stmt = $db->query(sprintf('SELECT * FROM %s; INSERT INTO %s(id) VALUES (3)', $table, $table)); 48 $stmt = $db->query(sprintf('SELECT id FROM %s', $table)); 54 $db->exec(sprintf('DROP TABLE IF EXISTS %s', $table));
|
H A D | pdo_mysql_attr_init_command.phpt | 21 $table = sprintf("test_%s", md5(mt_rand(0, PHP_INT_MAX))); 23 $db->exec(sprintf('DROP TABLE IF EXISTS %s', $table)); 25 $create = sprintf('CREATE TABLE %s(id INT)', $table); 33 $db->exec(sprintf('INSERT INTO %s(id) VALUES (1)', $table)); 34 $stmt = $db->query(sprintf('SELECT id FROM %s', $table)); 37 $db->exec(sprintf('DROP TABLE IF EXISTS %s', $table));
|
/PHP-8.3/ext/pdo_sqlite/tests/ |
H A D | bug_42589.phpt | 2 PDO SQLite Feature Request #42589 (getColumnMeta() should also return table name) 24 var_dump(!empty($meta1['table']) && $meta1['table'] == 'test_42589'); 25 var_dump(!empty($meta2['table']) && $meta2['table'] == 'test_42589');
|
/PHP-8.3/Zend/ |
H A D | zend_weakrefs.h | 65 HashTable *zend_weakmap_get_gc(zend_object *object, zval **table, int *n); 66 HashTable *zend_weakmap_get_key_entry_gc(zend_object *object, zval **table, int *n); 67 HashTable *zend_weakmap_get_entry_gc(zend_object *object, zval **table, int *n); 68 HashTable *zend_weakmap_get_object_key_entry_gc(zend_object *object, zval **table, int *n); 69 HashTable *zend_weakmap_get_object_entry_gc(zend_object *object, zval **table, int *n);
|
H A D | zend_iterators.c | 27 static HashTable *iter_wrapper_get_gc(zend_object *object, zval **table, int *n); 73 static HashTable *iter_wrapper_get_gc(zend_object *object, zval **table, int *n) { in iter_wrapper_get_gc() argument 76 return iter->funcs->get_gc(iter, table, n); in iter_wrapper_get_gc() 79 *table = NULL; in iter_wrapper_get_gc()
|
/PHP-8.3/ext/sqlite3/tests/ |
H A D | sqlite3_20_error.phpt | 10 echo "SELECTING from invalid table\n"; 21 SELECTING from invalid table 23 Warning: SQLite3::query(): Unable to prepare statement: no such table: non_existent_table in %s on … 25 Error Msg: no such table: non_existent_table
|
H A D | sqlite3_38_backup.phpt | 10 echo "Creating table\n"; 14 echo "Checking if table has been created\n"; 22 echo "Checking if table has been copied\n"; 42 Creating table 43 Checking if table has been created 47 Checking if table has been copied
|
/PHP-8.3/ext/pdo_pgsql/tests/ |
H A D | bug62498-32bit.phpt | 21 // create the table 57 ["table"]=> 76 ["table"]=> 95 ["table"]=> 114 ["table"]=> 133 ["table"]=> 152 ["table"]=> 171 ["table"]=> 190 ["table"]=> 209 ["table"]=>
|
H A D | bug62498.phpt | 21 // create the table 57 ["table"]=> 76 ["table"]=> 95 ["table"]=> 114 ["table"]=> 133 ["table"]=> 152 ["table"]=> 171 ["table"]=> 190 ["table"]=> 209 ["table"]=>
|
/PHP-8.3/ext/phar/tests/ |
H A D | phpinfo_004.phpt | 29 <table> 38 </table> 39 <table> 42 </table> 43 <table> 48 </table> 51 <table> 60 </table> 61 <table> 64 </table> [all …]
|
/PHP-8.3/ext/pdo_odbc/tests/ |
H A D | autocommit.phpt | 16 $table = 'autocommit_pdo_odbc'; 19 $db->exec("CREATE TABLE {$table} (id INT, name VARCHAR(255))"); 27 $db->query("INSERT INTO {$table} (id, name) VALUES (1, 'test')"); 32 $r = $db->query("SELECT * FROM {$table}");
|