/PHP-8.0/ext/intl/calendar/ |
H A D | calendar.stub.php | 32 public function add(int $field, int $value) {} argument 50 public function clear(?int $field = null) {} argument 62 public function get(int $field) {} argument 68 public function getActualMaximum(int $field) {} argument 74 public function getActualMinimum(int $field) {} argument 110 public function getGreatestMinimum(int $field) {} argument 122 public function getLeastMaximum(int $field) {} argument 134 public function getMaximum(int $field) {} argument 152 public function getMinimum(int $field) {} argument 225 public function roll(int $field, $value) {} argument [all …]
|
H A D | calendar_methods.cpp | 220 zend_long field; in _php_intlcal_field_uec_ret_in32t_method() local 228 ZEND_VALUE_ERROR_INVALID_FIELD(field, 2); in _php_intlcal_field_uec_ret_in32t_method() 283 zend_long field, in PHP_FUNCTION() local 292 ZEND_VALUE_ERROR_INVALID_FIELD(field, 2); in PHP_FUNCTION() 415 zend_long field, value; in PHP_FUNCTION() local 424 ZEND_VALUE_ERROR_INVALID_FIELD(field, 2); in PHP_FUNCTION() 442 zend_long field; in PHP_FUNCTION() local 466 zend_long field; in PHP_FUNCTION() local 475 ZEND_VALUE_ERROR_INVALID_FIELD(field, 3); in PHP_FUNCTION() 543 zend_long field; in _php_intlcal_field_ret_in32t_method() local [all …]
|
/PHP-8.0/ext/intl/tests/ |
H A D | calendar_get_Least_Greatest_Minimum_Maximum_error.phpt | 78 ValueError: 0, IntlCalendar::getLeastMaximum(): Argument #1 ($field) must be a valid field 79 ValueError: 0, IntlCalendar::getMaximum(): Argument #1 ($field) must be a valid field 80 ValueError: 0, IntlCalendar::getGreatestMinimum(): Argument #1 ($field) must be a valid field 81 ValueError: 0, IntlCalendar::getMinimum(): Argument #1 ($field) must be a valid field 82 ValueError: 0, intlcal_get_least_maximum(): Argument #2 ($field) must be a valid field 83 ValueError: 0, intlcal_get_maximum(): Argument #2 ($field) must be a valid field 84 ValueError: 0, intlcal_get_greatest_minimum(): Argument #2 ($field) must be a valid field 85 ValueError: 0, intlcal_get_minimum(): Argument #2 ($field) must be a valid field
|
H A D | calendar_get_getActualMaximum_Minumum_error.phpt | 32 IntlCalendar::get(): Argument #1 ($field) must be a valid field 33 IntlCalendar::getActualMaximum(): Argument #1 ($field) must be a valid field 34 IntlCalendar::getActualMinimum(): Argument #1 ($field) must be a valid field
|
H A D | calendar_get_getActualMaximum_Minumum_error2.phpt | 82 ValueError: 0, intlcal_get(): Argument #2 ($field) must be a valid field 83 ValueError: 0, intlcal_get_actual_maximum(): Argument #2 ($field) must be a valid field 84 ValueError: 0, intlcal_get_actual_minimum(): Argument #2 ($field) must be a valid field 85 TypeError: 0, intlcal_get(): Argument #2 ($field) must be of type int, string given 86 TypeError: 0, intlcal_get_actual_maximum(): Argument #2 ($field) must be of type int, string given 87 TypeError: 0, intlcal_get_actual_minimum(): Argument #2 ($field) must be of type int, string given
|
H A D | calendar_clear_error.phpt | 32 IntlCalendar::clear(): Argument #1 ($field) must be a valid field 33 intlcal_clear(): Argument #2 ($field) must be a valid field
|
H A D | calendar_roll_error.phpt | 27 IntlCalendar::roll(): Argument #1 ($field) must be a valid field
|
H A D | calendar_isSet_error.phpt | 27 IntlCalendar::isSet(): Argument #1 ($field) must be a valid field
|
/PHP-8.0/ext/mysqli/tests/ |
H A D | bug_mysql_49406.phpt | 66 $field = $meta_res->fetch_field(); 68 printf("Name : %s\n", $field->name); 69 printf("Orgname : %s\n", $field->orgname); 70 printf("Table : %s\n", $field->table); 71 printf("Orgtable : %s\n", $field->orgtable); 72 printf("Maxlength : %d\n", $field->max_length); 73 printf("Length : %d\n", $field->length); 74 printf("Charsetnr : %d\n", $field->charsetnr); 75 printf("Flags : %d\n", $field->flags); 76 …printf("Type : %d (%s)\n", $field->type, (isset($datatypes[$field->type])) ? $datatypes[$f… [all …]
|
H A D | mysqli_fetch_fields.phpt | 28 foreach ($fields as $k => $field) { 29 var_dump($field); 33 if ($field->charsetnr != $charsetInfo->number) { 36 $charsetInfo->number, $field->charsetnr); 38 if ($field->length != $charsetInfo->max_length) { 41 $field->max_length);
|
H A D | mysqli_fetch_field_flags.phpt | 2 mysqli_fetch_field() - flags/field->flags 126 $field = mysqli_fetch_field_direct($res, 1); 127 if (!is_object($field)) { 132 if ($field->name != 'col1') { 202 $field = mysqli_fetch_field($res); 203 while ($field = mysqli_fetch_field($res)) { 204 if (!isset($expected_flags[$field->name])) { 205 printf("[010] Found unexpected field '%s'\n", $field->name); 207 …ing_flags, $unexpected_flags, $flags_found) = checkFlags($field->flags, $expected_flags[$field->na… 210 $unexpected_flags, $field->name, $flags_found); [all …]
|
H A D | mysqli_stmt_get_result_metadata_fetch_field.phpt | 2 mysqli_stmt_get_result() - meta data, field info 39 while ($field = $res->fetch_field()) { 40 var_dump($field); 47 if ($field->charsetnr != $charsetInfo->number) { 50 $charsetInfo->number, $field->charsetnr); 52 if ($field->length != $charsetInfo->max_length) { 54 $charsetInfo->max_length, $field->max_length);
|
H A D | bug77597.phpt | 23 $field = $result->fetch_field(); 24 var_dump($field->name);
|
H A D | mysqli_fetch_field_types.phpt | 2 mysqli_fetch_field() - data types/field->type 43 if (!is_object($field = mysqli_fetch_field($res))) { 45 gettype($field), 50 if ($field->type != $php_type) { 53 if ($k == $field->type) { 59 $php_type, $sql_type, $field->type, $code_name);
|
H A D | mysqli_field_seek.phpt | 81 $field = mysqli_fetch_field($res); 82 var_dump($field); 84 if ($field->charsetnr != $charsetInfo->number) { 86 $charsetInfo->charset, $charsetInfo->number, $field->charsetnr); 88 if ($field->length != $charsetInfo->max_length) { 90 $charsetInfo->max_length, $field->max_length);
|
/PHP-8.0/ext/opcache/tests/jit/ |
H A D | bug81225_2.phpt | 18 …$e = $a + 2147483648; // 0x8000,0000 cannot encoded as imm field of lea r1, [r2 + imm] 19 …$f = $a + 78187493394; // 0x12,1234,5678 cannot encoded as imm field of lea r1, [r2 + imm] 28 …$e = $a + (-2147483649); // 0xFFFF,FFFF,7FFF,FFFF cannot encoded as imm field of lea r1, [r… 29 …$f = $a + (-261458978401740); // 0xFFFF,1234,5678,1234 cannot encoded as imm field of lea r1, [r… 39 …$f = $a - 2147483649; // 0x8000,0001 cannot encoded as imm field of lea r1, [r2 + imm] 40 …$g = $a - 78187493394; // 0x12,1234,5678 cannot encoded as imm field of lea r1, [r2 + imm] 49 …$e = $a - (-2147483648); // 0xFFFF,FFFF,8000,0000 cannot encoded as imm field of lea r1, [r… 50 …$f = $a - (-2147483649); // 0xFFFF,FFFF,7FFF,FFFF cannot encoded as imm field of lea r1, [r… 51 …$g = $a - (-261458978401740); // 0xFFFF,1234,5678,1234 cannot encoded as imm field of lea r1, [r…
|
/PHP-8.0/ext/pgsql/ |
H A D | pgsql.stub.php | 121 function pg_field_name($result, int $field): string {} argument 128 function pg_fieldname($result, int $field): string {} argument 131 function pg_field_size($result, int $field): int {} argument 138 function pg_fieldsize($result, int $field): int {} argument 141 function pg_field_type($result, int $field): string {} argument 148 function pg_fieldtype($result, int $field): string {} argument 151 function pg_field_type_oid($result, int $field): string|int {} argument 154 function pg_field_num($result, string $field): int {} argument 161 function pg_fieldnum($result, string $field): int {} argument 199 function pg_fetch_all_columns($result, int $field = 0): array {} argument [all …]
|
/PHP-8.0/ext/odbc/ |
H A D | odbc.stub.php | 61 function odbc_result($statement, string|int $field): string|bool|null {} argument 90 function odbc_field_name($statement, int $field): string|false {} argument 93 function odbc_field_type($statement, int $field): string|false {} argument 96 function odbc_field_len($statement, int $field): int|false {} argument 102 function odbc_field_precision($statement, int $field): int|false {} argument 105 function odbc_field_scale($statement, int $field): int|false {} argument 108 function odbc_field_num($statement, string $field): int|false {} argument
|
/PHP-8.0/ext/opcache/tests/ |
H A D | bug79193.phpt | 2 Bug #79193: Incorrect type inference for self::$field =& $field
|
H A D | bug74442.phpt | 11 $field = new $typeclass($params); 12 return $field;
|
/PHP-8.0/ext/mysqlnd/ |
H A D | mysqlnd_ps_codec.c | 60 zend_bool is_bit = field->type == MYSQL_TYPE_BIT; in ps_fetch_from_1_to_8_bytes() 63 if (field->flags & UNSIGNED_FLAG) { in ps_fetch_from_1_to_8_bytes() 140 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 1); in ps_fetch_int8() 149 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 2); in ps_fetch_int16() 158 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 4); in ps_fetch_int32() 167 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 8); in ps_fetch_int64() 187 dval = mysql_float_to_double(fval, (field->decimals >= NOT_FIXED_DEC) ? -1 : (int)field->decimals); in ps_fetch_float() 243 if (field->decimals > 0 && field->decimals < 7) { in ps_fetch_time() 252 field->decimals, in ps_fetch_time() 338 if (field->decimals > 0 && field->decimals < 7) { in ps_fetch_datetime() [all …]
|
H A D | mysqlnd_ps.h | 22 typedef void (*ps_field_fetch_func)(zval * zv, const MYSQLND_FIELD * const field, const unsigned in… 41 void ps_fetch_from_1_to_8_bytes(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pa…
|
/PHP-8.0/ext/pgsql/tests/ |
H A D | 03sync_query.phpt | 138 Argument #3 must be a field name from this result set 139 pg_fetch_all_columns(): Argument #2 ($field) must be greater than or equal to 0 140 pg_fetch_all_columns(): Argument #2 ($field) must be less than the number of fields for this result… 143 Argument #2 must be a field name from this result set 144 pg_field_name(): Argument #2 ($field) must be greater than or equal to 0 145 pg_field_name(): Argument #2 ($field) must be less than the number of fields for this result set 146 pg_field_table(): Argument #2 ($field) must be greater than or equal to 0 147 pg_field_table(): Argument #2 ($field) must be less than the number of fields for this result set
|
/PHP-8.0/ext/phar/tests/zip/ |
H A D | corrupt_009.phpt | 2 Phar: corrupted zip (extra field way too long) 14 phar error: Unable to process extra field header for file in central directory in zip-based phar "%…
|
/PHP-8.0/ext/pdo_sqlite/tests/ |
H A D | bug70862.phpt | 11 $db->exec('CREATE TABLE test(field BLOB)'); 26 $stmt = $db->prepare('INSERT INTO test(field) VALUES (:para)');
|