Home
last modified time | relevance | path

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

123456

/PHP-7.0/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']));
142 $fields['all_res'][$k]->max_length = $fields['all_meta'][$k]->max_length;
144 if ($fields['all_res'][$k] != $fields['all_meta'][$k]) {
152 $num = count($fields['res']);
[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 list(,$fields_val) = each($fields);
143 if ($fields_stmt != $fields) {
146 var_dump($fields);
/PHP-7.0/ext/mysqlnd/
H A Dmysqlnd_result_meta.c68 if (meta->fields[i].root) { in MYSQLND_METHOD()
71 meta->fields[i].root = NULL; in MYSQLND_METHOD()
93 meta->fields[i].type); in MYSQLND_METHOD()
97 meta->fields[i].type); in MYSQLND_METHOD()
153 MYSQLND_FIELD *fields; in MYSQLND_METHOD() local
157 if ((fields = meta->fields)) { in MYSQLND_METHOD()
164 meta->fields = NULL; in MYSQLND_METHOD()
264 new_meta->fields = new_fields; in MYSQLND_METHOD()
287 meta->fields[meta->current_field].name? meta->fields[meta->current_field].name:"", in MYSQLND_METHOD()
301 meta->fields[meta->current_field].name? meta->fields[meta->current_field].name:"", in MYSQLND_METHOD()
[all …]
/PHP-7.0/ext/oci8/tests/
H A Dimp_res_field.phpt131 num fields : 0
140 num fields : 0
145 num fields : 0
150 num fields : 0
155 num fields : 0
158 num fields : 2
161 num fields : 1
163 num fields : 1
168 num fields : 2
178 num fields : 1
[all …]
/PHP-7.0/ext/standard/tests/file/
H A Dfgetcsv_variation20.phpt52 // call fgetcsv() to parse 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"
139 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
73 string(39) "This is line of text without csv fields"
81 string(39) "This is line of text without csv fields"
89 string(39) "This is line of text without csv fields"
97 string(39) "This is line of text without csv fields"
105 string(39) "This is line of text without csv fields"
113 string(39) "This is line of text without csv fields"
121 string(39) "This is line of text without csv fields"
129 string(39) "This is line of text without csv fields"
137 string(39) "This is line of text without csv fields"
[all …]
H A Dfgetcsv_variation6.phpt606 string(6) "fields"
636 string(6) "fields"
666 string(6) "fields"
696 string(6) "fields"
726 string(6) "fields"
756 string(6) "fields"
786 string(6) "fields"
816 string(6) "fields"
846 string(6) "fields"
876 string(6) "fields"
[all …]
H A Dfgetcsv_variation17.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 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.phpt67 // call fgetcsv() to parse csv fields
724 This is line of text without csv fields
739 This is line of text without csv fields
754 This is line of text without csv fields
769 This is line of text without csv fields
784 This is line of text without csv fields
799 This is line of text without csv fields
814 This is line of text without csv fields
829 This is line of text without csv fields
844 This is line of text without csv fields
[all …]
H A Dfgetcsv_variation16.phpt69 // call fgetcsv() to parse csv fields
728 This is line of text without csv fields
743 This is line of text without csv fields
758 This is line of text without csv fields
773 This is line of text without csv fields
788 This is line of text without csv fields
803 This is line of text without csv fields
818 This is line of text without csv fields
833 This is line of text without csv fields
848 This is line of text without csv fields
[all …]
H A Dfputcsv_error.phpt6 …Prototype: int fputcsv ( resource $handle [, array $fields [, string $delimiter [, string $enclosu…
7 …Description:fputcsv() formats a line (passed as a fields array) as CSV and write it to the specifi…
19 $fields = array("fld1", "fld2");
22 var_dump( fputcsv($fp, $fields, $delim, $enclosure, $fp) );
39 …var_dump( fputcsv($invalid_args[$loop_counter - 1], $fields, $delim, $enclosure) ); // all args sp…
/PHP-7.0/sapi/cli/
H A Dgenerate_mime_type_map.php20 $fields = preg_split('/\s+/', $line); variable
21 if (count($fields) > 1) {
22 $mime = array_shift($fields);
23 foreach ($fields as $extension) {
/PHP-7.0/ext/pgsql/tests/
H A D12pg_insert_9.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";
21 echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n";
22 var_dump( pg_insert($db, $table_name, $fields, PGSQL_DML_EXEC) ); // Return resource
H A D14pg_update.phpt15 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
18 pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n";
19 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n";
20 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n";
H A D14pg_update_9.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 D12pg_insert.phpt15 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
17 pg_insert($db, $table_name, $fields) or print "Error in test 1\n";
18 echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING)."\n";
H A D10pg_convert_json_array.phpt16 $fields = array(
20 $converted = pg_convert($db, $table_name_92, $fields);
23 if (!pg_insert($db, $table_name_92, $fields)) {
H A D10pg_convert.phpt16 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
17 $converted = pg_convert($db, $table_name, $fields);
H A D10pg_convert_9.phpt17 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
18 $converted = pg_convert($db, $table_name, $fields);
H A Dbug64609.phpt19 $fields = array('a' => 'ok');
20 $converted = pg_convert($db, 'test_enum', $fields);
/PHP-7.0/ext/pdo_mysql/
H A Dmysql_statement.c152 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_fill_stmt_from_result()
190 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_execute_prepared_libmysql()
213 switch (S->fields[i].type) { in pdo_mysql_stmt_execute_prepared_libmysql()
231 S->fields[i].max_length? S->fields[i].max_length: in pdo_mysql_stmt_execute_prepared_libmysql()
232 S->fields[i].length; in pdo_mysql_stmt_execute_prepared_libmysql()
301 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_execute_prepared_mysqlnd()
704 cols[i].name = strpprintf(0, "%s.%s", S->fields[i].table, S->fields[i].name);
706 cols[i].name = zend_string_init(S->fields[i].name, S->fields[i].name_length, 0);
709 cols[i].precision = S->fields[i].decimals;
710 cols[i].maxlen = S->fields[i].length;
[all …]
/PHP-7.0/ext/imap/tests/
H A Dimap_rfc822_parse_headers_basic.phpt17 $fields = array ('toaddress','to','fromaddress','from',
24 echo "Check general fields\n";
25 foreach ($fields as $key) {
93 Check general fields
H A Dimap_headerinfo_basic.phpt17 $fields = array ('toaddress','to','fromaddress','from',
24 echo "Check general fields\n";
25 foreach ($fields as $key) {
93 Check general fields
/PHP-7.0/ext/mbstring/libmbfl/tests/conv_encoding.tests/
H A Dgen_exp.c409 const char *fields[16]; in main() local
417 if (field >= sizeof(fields) / sizeof(*fields)) { in main()
449 fields[field++] = q; in main()
462 cp_932 = strtol(fields[0], NULL, 0); in main()
464 fprintf(stderr, "Malformed field value: %s\n", fields[0]); in main()
468 cp_uni = strtol(fields[1], NULL, 0); in main()
470 fprintf(stderr, "Malformed field value: %s\n", fields[1]); in main()

Completed in 67 milliseconds

123456