Home
last modified time | relevance | path

Searched refs:fields (Results 51 – 75 of 137) sorted by path

123456

/PHP-7.4/ext/pdo_pgsql/tests/
H A Dcopy_from.phpt58 echo "Testing pgsqlCopyFromArray() with only selected fields\n";
95 echo "Testing pgsqlCopyFromFile() with only selected fields\n";
217 Testing pgsqlCopyFromArray() with only selected fields
351 Testing pgsqlCopyFromFile() with only selected fields
H A Dcopy_to.phpt40 echo "Testing pgsqlCopyToArray() with only selected fields\n";
58 echo "Testing pgsqlCopyToFile() with only selected fields\n";
106 Testing pgsqlCopyToArray() with only selected fields
130 Testing pgsqlCopyToFile() with only selected fields
/PHP-7.4/ext/pgsql/
H A Dpgsql.c566 ZEND_ARG_INFO(0, fields)
/PHP-7.4/ext/pgsql/tests/
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 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 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 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 D13pg_select.phpt15 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
H A D13pg_select_9.phpt17 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
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 D15pg_delete.phpt13 $fields = array('num'=>'1234', 'str'=>'XXX', 'bin'=>'YYY');
H A D80_bug39971.phpt2 Bug #39971 (8.0+) (pg_insert/pg_update do not allow now() to be used for timestamp fields)
H A Dbug64609.phpt19 $fields = array('a' => 'ok');
20 $converted = pg_convert($db, 'test_enum', $fields);
/PHP-7.4/ext/reflection/tests/
H A Dbug49074.phpt2 Bug #49074 (private class static fields can be modified by using reflection)
/PHP-7.4/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-7.4/ext/spl/
H A Dspl_directory.c2637 zval *fields = NULL; in SPL_METHOD() local
2639 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "a|sss", &fields, &delim, &d_len, &enclo, &e_len, &esc,… in SPL_METHOD()
2673 ret = php_fputcsv(intern->u.file.stream, fields, delimiter, enclosure, escape); in SPL_METHOD()
3050 ZEND_ARG_INFO(0, fields)
/PHP-7.4/ext/spl/tests/
H A DSplFileObject_fputcsv_variation1.phpt12 and 3rd element is csv fields
39 // create the file and add the content with has csv fields
H A DSplFileObject_fputcsv_variation10.phpt2 SplFileObject::fputcsv(): Usage variations -- with line without any CSV fields
12 and 3rd element is csv fields
15 $fields = array( array('water_fruit\n'),
29 foreach ($fields as $field) {
33 // create the file and add the content with has csv fields
H A DSplFileObject_fputcsv_variation11.phpt12 and 3rd element is csv fields
39 // create the file and add the content with has csv fields
H A DSplFileObject_fputcsv_variation12.phpt13 and 3rd element is csv fields
40 // create the file and add the content with has csv fields
H A DSplFileObject_fputcsv_variation5.phpt12 and 3rd element is csv fields
39 // create the file and add the content with has csv fields
H A DSplFileObject_fputcsv_variation6.phpt15 and 3rd element is csv fields
42 // create the file and add the content with has csv fields
H A DSplFileObject_fputcsv_variation7.phpt15 and 3rd element is csv fields
42 // create the file and add the content with has csv fields

Completed in 109 milliseconds

123456