Home
last modified time | relevance | path

Searched refs:fields (Results 1 – 25 of 139) sorted by relevance

123456

/PHP-8.1/ext/mbstring/ucgendat/
H A Ductest.php36 yield $fields;
74 assert(count($fields) == 15);
76 $code = intval($fields[0], 16);
99 assert(count($fields) == 4);
101 $code = intval($fields[0], 16);
102 $status = $fields[1];
115 assert(count($fields) >= 5);
117 $code = intval($fields[0], 16);
118 $lower = parseCodes($fields[1]);
119 $title = parseCodes($fields[2]);
[all …]
H A Ducgendat.php227 yield $fields;
233 foreach ($lines as $fields) {
240 $name = $fields[1];
262 $bidiClass = $fields[4];
290 if (count($fields) != 4) {
295 $status = $fields[1];
345 if (count($fields) != 5 && count($fields) != 6) {
354 $cond = $fields[4];
370 if (count($fields) != 2) {
374 $property = $fields[1];
[all …]
/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_metadata.phpt78 $fields = array();
80 $fields['res'][] = $info;
83 $fields['meta'][] = $info;
88 if (count($fields['res']) != count($fields['meta'])) {
89 … printf("[014] stmt_get_result indicates %d fields, stmt_result_metadata indicates %d fields\n",
90 count($fields['res']),
91 count($fields['meta']));
114 … $k, gettype($info->def), $info->def, gettype($fields['meta'][$k]->def), $fields['meta'][$k]->def);
142 $fields['all_res'][$k]->max_length = $fields['all_meta'][$k]->max_length;
144 if ($fields['all_res'][$k] != $fields['all_meta'][$k]) {
[all …]
H A Dmysqli_explain_metadata.phpt44 $fields = mysqli_fetch_fields($res);
45 if (($tmp = count($fields)) !== $num_fields) {
50 foreach ($fields as $k => $field) {
96 if ($fields_res_meta != $fields) {
99 var_dump($fields);
131 reset($fields);
133 $fields_val = current($fields);
134 next($fields);
144 if ($fields_stmt != $fields) {
147 var_dump($fields);
/PHP-8.1/sapi/fpm/tests/
H A Dstatus.inc44 * @param array $fields
67 * @param array $fields
78 array $fields,
121 * @param array $fields
132 * @param array $fields
145 $fields,
156 * @param array $fields
162 $fields,
179 * @param array $fields
185 $fields,
[all …]
/PHP-8.1/ext/oci8/tests/
H A Dimp_res_field.phpt130 num fields : 0
139 num fields : 0
144 num fields : 0
149 num fields : 0
154 num fields : 0
157 num fields : 2
160 num fields : 1
162 num fields : 1
167 num fields : 2
177 num fields : 1
[all …]
/PHP-8.1/ext/standard/tests/file/
H A Dfgetcsv_variation20.phpt47 // call fgetcsv() to parse csv fields
70 string(39) "This is line of text without csv fields"
78 string(39) "This is line of text without csv fields"
86 string(39) "This is line of text without csv fields"
94 string(39) "This is line of text without csv fields"
102 string(39) "This is line of text without csv fields"
110 string(39) "This is line of text without csv fields"
118 string(39) "This is line of text without csv fields"
126 string(39) "This is line of text without csv fields"
134 string(39) "This is line of text without csv fields"
[all …]
H A Dfgetcsv_variation13.phpt2 Test fgetcsv() : usage variations - with line without any csv fields
67 string(39) "This is line of text without csv fields"
75 string(39) "This is line of text without csv fields"
83 string(39) "This is line of text without csv fields"
91 string(39) "This is line of text without csv fields"
99 string(39) "This is line of text without csv fields"
107 string(39) "This is line of text without csv fields"
115 string(39) "This is line of text without csv fields"
123 string(39) "This is line of text without csv fields"
131 string(39) "This is line of text without csv fields"
[all …]
H A Dfgetcsv_variation6.phpt601 string(6) "fields"
631 string(6) "fields"
661 string(6) "fields"
691 string(6) "fields"
721 string(6) "fields"
751 string(6) "fields"
781 string(6) "fields"
811 string(6) "fields"
841 string(6) "fields"
871 string(6) "fields"
[all …]
H A Dfgetcsv_variation17.phpt596 string(6) "fields"
626 string(6) "fields"
656 string(6) "fields"
686 string(6) "fields"
716 string(6) "fields"
746 string(6) "fields"
776 string(6) "fields"
806 string(6) "fields"
836 string(6) "fields"
866 string(6) "fields"
[all …]
H A Dbug72330.phpt2 Bug #72330 (CSV fields incorrectly split if escape char followed by UTF chars)
17 $fields = str_getcsv($string, ';', '"', "#");
18 var_dump($fields);
H A Dfgetcsv_variation15.phpt62 // call fgetcsv() to parse csv fields
719 This is line of text without csv fields
734 This is line of text without csv fields
749 This is line of text without csv fields
764 This is line of text without csv fields
779 This is line of text without csv fields
794 This is line of text without csv fields
809 This is line of text without csv fields
824 This is line of text without csv fields
839 This is line of text without csv fields
[all …]
/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_result_meta.c59 meta->fields[i].root = NULL; in MYSQLND_METHOD()
82 meta->fields[i].num_key = idx; in MYSQLND_METHOD()
97 MYSQLND_FIELD *fields; in MYSQLND_METHOD() local
100 if ((fields = meta->fields)) { in MYSQLND_METHOD()
106 meta->fields = NULL; in MYSQLND_METHOD()
196 new_meta->fields = new_fields; in MYSQLND_METHOD()
219 meta->fields[meta->current_field].name? meta->fields[meta->current_field].name:""); in MYSQLND_METHOD()
232 meta->fields[meta->current_field].name? meta->fields[meta->current_field].name:""); in MYSQLND_METHOD()
233 DBG_RETURN(&meta->fields[fieldnr]); in MYSQLND_METHOD()
243 DBG_RETURN(meta->fields); in MYSQLND_METHOD()
[all …]
/PHP-8.1/ext/pdo_pgsql/
H A Dpgsql_driver.stub.php8 …, array $rows, string $separator = "\t", string $nullAs = "\\\\N", ?string $fields = null): bool {} argument
11 …ing $filename, string $separator = "\t", string $nullAs = "\\\\N", ?string $fields = null): bool {} argument
14 …$tableName, string $separator = "\t", string $nullAs = "\\\\N", ?string $fields = null): array|fal… argument
17 …ing $filename, string $separator = "\t", string $nullAs = "\\\\N", ?string $fields = null): bool {} argument
H A Dpgsql_driver_arginfo.h9 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, fields, IS_STRING, 1, "null")
17 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, fields, IS_STRING, 1, "null")
24 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, fields, IS_STRING, 1, "null")
/PHP-8.1/ext/pgsql/tests/
H A D14pg_update.phpt17 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
20 pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n";
21 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n";
22 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n";
H A D14pg_update_9.phpt19 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
22 pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n";
23 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n";
24 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n";
H A D12pg_insert.phpt17 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
19 pg_insert($db, $table_name, $fields) or print "Error in test 1\n";
20 echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING)."\n";
H A D10pg_convert_json_array.phpt18 $fields = array(
22 $converted = pg_convert($db, $table_name_92, $fields);
25 if (!pg_insert($db, $table_name_92, $fields)) {
H A D12pg_insert_9.phpt19 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
21 pg_insert($db, $table_name, $fields) or print "Error in test 1\n";
22 echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING)."\n";
23 echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n";
24 var_dump( pg_insert($db, $table_name, $fields, PGSQL_DML_EXEC) );
H A D10pg_convert.phpt18 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
19 $converted = pg_convert($db, $table_name, $fields);
H A Dbug64609.phpt21 $fields = array('a' => 'ok');
22 $converted = pg_convert($db, 'test_enum', $fields);
/PHP-8.1/ext/pdo_mysql/
H A Dmysql_statement.c152 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_fill_stmt_from_result()
175 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_after_execute_prepared()
189 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_after_execute_prepared()
203 switch (S->fields[i].type) { in pdo_mysql_stmt_after_execute_prepared()
221 S->fields[i].max_length? S->fields[i].max_length: in pdo_mysql_stmt_after_execute_prepared()
222 S->fields[i].length; in pdo_mysql_stmt_after_execute_prepared()
652 cols[i].name = strpprintf(0, "%s.%s", S->fields[i].table, S->fields[i].name); in pdo_mysql_stmt_describe()
657 cols[i].name = zend_string_init(S->fields[i].name, S->fields[i].name_length, 0); in pdo_mysql_stmt_describe()
661 cols[i].precision = S->fields[i].decimals; in pdo_mysql_stmt_describe()
662 cols[i].maxlen = S->fields[i].length; in pdo_mysql_stmt_describe()
[all …]
/PHP-8.1/ext/imap/tests/
H A Dimap_rfc822_parse_headers_basic.phpt19 $fields = array ('toaddress','to','fromaddress','from',
26 echo "Check general fields\n";
27 foreach ($fields as $key) {
96 Check general fields
H A Dimap_headerinfo_basic.phpt19 $fields = array ('toaddress','to','fromaddress','from',
26 echo "Check general fields\n";
27 foreach ($fields as $key) {
96 Check general fields

Completed in 36 milliseconds

123456