Home
last modified time | relevance | path

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

1234567

/PHP-5.6/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-5.6/ext/ereg/regex/
H A Dsplit.c9 split(string, fields, nfields, sep) in split() argument
20 register char **fp = fields;
158 char *fields[MNF]; local
187 char *fields[NF]; local
191 print(nf, NF, fields);
194 print(nf, nfp, fields) in print() argument
197 char *fields[];
281 char *fields[RNF+1]; in regress() local
289 fields[RNF] = NULL; in regress()
301 f = fields[i]; in regress()
[all …]
/PHP-5.6/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-5.6/ext/mysqlnd/
H A Dmysqlnd_result_meta.c113 if (meta->fields[i].root) { in MYSQLND_METHOD()
116 meta->fields[i].root = NULL; in MYSQLND_METHOD()
138 meta->fields[i].type); in MYSQLND_METHOD()
142 meta->fields[i].type); in MYSQLND_METHOD()
206 MYSQLND_FIELD *fields; in MYSQLND_METHOD() local
210 if ((fields = meta->fields)) { in MYSQLND_METHOD()
217 meta->fields = NULL; in MYSQLND_METHOD()
313 new_meta->fields = new_fields; in MYSQLND_METHOD()
335 meta->fields[meta->current_field].name? meta->fields[meta->current_field].name:"", in MYSQLND_METHOD()
349 meta->fields[meta->current_field].name? meta->fields[meta->current_field].name:"", in MYSQLND_METHOD()
[all …]
/PHP-5.6/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-5.6/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-5.6/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-5.6/ext/pdo_mysql/
H A Dmysql_statement.c151 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_fill_stmt_from_result()
189 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_execute_prepared_libmysql()
212 switch (S->fields[i].type) { in pdo_mysql_stmt_execute_prepared_libmysql()
230 S->fields[i].max_length? S->fields[i].max_length: in pdo_mysql_stmt_execute_prepared_libmysql()
231 S->fields[i].length; in pdo_mysql_stmt_execute_prepared_libmysql()
300 S->fields = mysql_fetch_fields(S->result); in pdo_mysql_stmt_execute_prepared_mysqlnd()
681 namelen = spprintf(&cols[i].name, 0, "%s.%s", S->fields[i].table, S->fields[i].name);
684 namelen = strlen(S->fields[i].name);
689 cols[i].precision = S->fields[i].decimals;
690 cols[i].maxlen = S->fields[i].length;
[all …]
/PHP-5.6/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

Completed in 42 milliseconds

1234567