Home
last modified time | relevance | path

Searched refs:fields (Results 76 – 100 of 151) sorted by relevance

1234567

/php-src/ext/mysqli/tests/
H A Dmysqli_fetch_field_direct.phpt75 mysqli_fetch_field_direct(): Argument #2 ($index) must be less than the number of fields for this r…
H A Dmysqli_fetch_field_direct_oo.phpt77 mysqli_result::fetch_field_direct(): Argument #1 ($index) must be less than the number of fields fo…
H A Dbug32405.phpt18 /* two fields are needed. the problem does not occur with 1 field only selected. */
H A Dmysqli_field_tell.phpt90 mysqli_field_seek(): Argument #2 ($index) must be less than the number of fields for this result set
H A Dmysqli_fetch_column.phpt137 mysqli_fetch_column(): Argument #2 ($column) must be less than the number of fields for this result…
H A Dmysqli_stmt_bind_result.phpt119 $fields = mysqli_fetch_fields($result);
311 Number of bind variables doesn't match number of fields in prepared statement
312 Number of bind variables doesn't match number of fields in prepared statement
/php-src/ext/mysqlnd/
H A Dmysqlnd_result.c540 row_packet->fields_metadata = result->meta->fields; in MYSQLND_METHOD()
570 meta->fields, in MYSQLND_METHOD()
646 row_packet.fields_metadata = meta->fields; in MYSQLND_METHOD()
990 MYSQLND_FIELD *field = meta->fields; in MYSQLND_METHOD()
1008 if (meta->fields[i].is_numeric == FALSE) { in MYSQLND_METHOD()
1009 zend_hash_update(row_ht, meta->fields[i].sname, data); in MYSQLND_METHOD()
1011 zend_hash_index_update(row_ht, meta->fields[i].num_key, data); in MYSQLND_METHOD()
1034 MYSQLND_FIELD *field = result->meta->fields; in MYSQLND_METHOD()
/php-src/ext/date/tests/
H A Dgh10747-3.phpt2 Bug GH-10747 (Private fields in serialized DateInterval objects throw)
H A Dgh10747-error.phpt2 Bug GH-10747 (Private fields in serialized DateTimeImmutable objects throw)
H A Dgh10747-4.phpt2 Bug GH-10747 (Private fields in serialized DatePeriod objects throw)
/php-src/ext/soap/tests/bugs/
H A Dbug37083.phpt19 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id11"/><ide…
20 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id12"/><ide…
21 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id13"/><ide…
22 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id14"/><ide…
23 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id15"/><ide…
24 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id16"/><ide…
25 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id17"/><ide…
26 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id18"/><ide…
27 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id19"/><ide…
28 …earchService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><fields href="#id20"/><ide…
/php-src/ext/standard/tests/file/
H A Dfgetcsv_variation21.phpt22 // create the file and add the content with has csv fields
47 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation18.phpt6 Description: Gets line from file pointer and parse for CSV fields
16 1st element is delimiter & 2nd element is csv fields
37 // create the file and add the content with has csv fields
53 fwrite($file_handle, "This is line of text without csv fields\n");
68 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation14.phpt20 // create the file and add the content with has csv fields
45 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation22.phpt13 1st element is delimiter & 2nd element is csv fields
34 // create the file and add the content with has csv fields
51 fwrite($file_handle, "This is line of text without csv fields\n");
65 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation29.phpt13 1st element is delimiter & 2nd element is csv fields
34 // create the file and add the content with has csv fields
51 fwrite($file_handle, "This is line of text without csv fields\n");
66 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation30.phpt13 1st element is delimiter & 2nd element is csv fields
34 // create the file and add the content with has csv fields
51 fwrite($file_handle, "This is line of text without csv fields\n");
65 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation31.phpt13 1st element is delimiter & 2nd element is csv fields
34 // create the file and add the content with has csv fields
51 fwrite($file_handle, "This is line of text without csv fields\n");
66 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation9.phpt6 Description: Gets line from file pointer and parse for CSV fields
18 and 3rd element is csv fields
42 // create the file and add the content with has csv fields
59 fwrite($file_handle, "This is line of text without csv fields\n");
74 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation12.phpt11 and 3rd element is csv fields
33 // create the file and add the content with has csv fields
51 fwrite($file_handle, "This is line of text without csv fields\n");
66 // call fgetcsv() to parse csv fields
/php-src/ext/standard/
H A Dfile.h53 PHPAPI ssize_t php_fputcsv(php_stream *stream, zval *fields, char delimiter, char enclosure, int es…
/php-src/docs/source/core/data-structures/
H A Dzval.rst75 The rest of the fields aren't important for now.
81 Together, the value and the tag make up the ``zval``, along with some other fields. It may look
130 The fields in ``zval`` should never be accessed directly. Instead, there are a plethora of macros to
197 or function, the ``zval.value.ce`` or ``zval.value.func`` fields may be used, respectively.
H A Dzend_string.rst15 the strings length, along with some other fields. It looks as follows:
57 string was allocated. After releasing the string, you must not access any of its fields anymore, as
104 As per php-src fashion, you are not supposed to access the ``zend_string`` fields directly. Instead,
/php-src/ext/pdo_mysql/
H A Dphp_pdo_mysql_int.h122 const MYSQL_FIELD *fields; member
/php-src/ext/dom/tests/
H A DDOMEntity_fields.phpt2 DOMEntity fields

Completed in 36 milliseconds

1234567