/PHP-8.2/ext/intl/tests/ |
H A D | calendar_get_Least_Greatest_Minimum_Maximum_error.phpt | 76 ValueError: 0, IntlCalendar::getLeastMaximum(): Argument #1 ($field) must be a valid field 77 ValueError: 0, IntlCalendar::getMaximum(): Argument #1 ($field) must be a valid field 78 ValueError: 0, IntlCalendar::getGreatestMinimum(): Argument #1 ($field) must be a valid field 79 ValueError: 0, IntlCalendar::getMinimum(): Argument #1 ($field) must be a valid field 80 ValueError: 0, intlcal_get_least_maximum(): Argument #2 ($field) must be a valid field 81 ValueError: 0, intlcal_get_maximum(): Argument #2 ($field) must be a valid field 82 ValueError: 0, intlcal_get_greatest_minimum(): Argument #2 ($field) must be a valid field 83 ValueError: 0, intlcal_get_minimum(): Argument #2 ($field) must be a valid field
|
H A D | calendar_get_getActualMaximum_Minumum_error.phpt | 30 IntlCalendar::get(): Argument #1 ($field) must be a valid field 31 IntlCalendar::getActualMaximum(): Argument #1 ($field) must be a valid field 32 IntlCalendar::getActualMinimum(): Argument #1 ($field) must be a valid field
|
H A D | calendar_get_getActualMaximum_Minumum_error2.phpt | 80 ValueError: 0, intlcal_get(): Argument #2 ($field) must be a valid field 81 ValueError: 0, intlcal_get_actual_maximum(): Argument #2 ($field) must be a valid field 82 ValueError: 0, intlcal_get_actual_minimum(): Argument #2 ($field) must be a valid field 83 TypeError: 0, intlcal_get(): Argument #2 ($field) must be of type int, string given 84 TypeError: 0, intlcal_get_actual_maximum(): Argument #2 ($field) must be of type int, string given 85 TypeError: 0, intlcal_get_actual_minimum(): Argument #2 ($field) must be of type int, string given
|
H A D | calendar_clear_error.phpt | 30 IntlCalendar::clear(): Argument #1 ($field) must be a valid field 31 intlcal_clear(): Argument #2 ($field) must be a valid field
|
H A D | calendar_isSet_error.phpt | 25 IntlCalendar::isSet(): Argument #1 ($field) must be a valid field
|
H A D | calendar_roll_error.phpt | 25 IntlCalendar::roll(): Argument #1 ($field) must be a valid field
|
/PHP-8.2/ext/opcache/tests/jit/ |
H A D | add_007.phpt | 22 $g = 0xff001; // Cannot be encoded into imm12 field 23 $h = 0x1000000; // Cannot be encoded into imm12 field 24 $i = 0xf12345678; // Cannot be encoded into imm12 field 25 $j = -31; // Cannot be encoded into imm12 field 45 $g = 0xff001; // Cannot be encoded into imm12 field 46 $h = 0x1000000; // Cannot be encoded into imm12 field 47 $i = 0xf12345678; // Cannot be encoded into imm12 field 48 $j = -31; // Cannot be encoded into imm12 field
|
H A D | bug81225_2.phpt | 19 …$e = $a + 2147483648; // 0x8000,0000 cannot encoded as imm field of lea r1, [r2 + imm] 20 …$f = $a + 78187493394; // 0x12,1234,5678 cannot encoded as imm field of lea r1, [r2 + imm] 29 …$e = $a + (-2147483649); // 0xFFFF,FFFF,7FFF,FFFF cannot encoded as imm field of lea r1, [r… 30 …$f = $a + (-261458978401740); // 0xFFFF,1234,5678,1234 cannot encoded as imm field of lea r1, [r… 40 …$f = $a - 2147483649; // 0x8000,0001 cannot encoded as imm field of lea r1, [r2 + imm] 41 …$g = $a - 78187493394; // 0x12,1234,5678 cannot encoded as imm field of lea r1, [r2 + imm] 50 …$e = $a - (-2147483648); // 0xFFFF,FFFF,8000,0000 cannot encoded as imm field of lea r1, [r… 51 …$f = $a - (-2147483649); // 0xFFFF,FFFF,7FFF,FFFF cannot encoded as imm field of lea r1, [r… 52 …$g = $a - (-261458978401740); // 0xFFFF,1234,5678,1234 cannot encoded as imm field of lea r1, [r…
|
H A D | gh8591-005.inc | 5 protected static int $field = 1; 10 $x = static::$field;
|
H A D | gh8591-006.inc | 5 protected static int $field = 1; 10 $x = static::$field;
|
/PHP-8.2/ext/mysqli/tests/ |
H A D | bug_mysql_49406.phpt | 67 $field = $meta_res->fetch_field(); 69 printf("Name : %s\n", $field->name); 70 printf("Orgname : %s\n", $field->orgname); 71 printf("Table : %s\n", $field->table); 72 printf("Orgtable : %s\n", $field->orgtable); 73 printf("Maxlength : %d\n", $field->max_length); 74 printf("Length : %d\n", $field->length); 75 printf("Charsetnr : %d\n", $field->charsetnr); 76 printf("Flags : %d\n", $field->flags); 77 …printf("Type : %d (%s)\n", $field->type, (isset($datatypes[$field->type])) ? $datatypes[$f… [all …]
|
H A D | mysqli_fetch_field_flags.phpt | 2 mysqli_fetch_field() - flags/field->flags 125 $field = mysqli_fetch_field_direct($res, 1); 126 if (!is_object($field)) { 131 if ($field->name != 'col1') { 201 $field = mysqli_fetch_field($res); 202 while ($field = mysqli_fetch_field($res)) { 203 if (!isset($expected_flags[$field->name])) { 204 printf("[010] Found unexpected field '%s'\n", $field->name); 206 …ing_flags, $unexpected_flags, $flags_found) = checkFlags($field->flags, $expected_flags[$field->na… 209 $unexpected_flags, $field->name, $flags_found); [all …]
|
H A D | protocol_query_row_fetch_data.phpt | 19 function my_query($conn, $field) 21 $sql = "SELECT strval, $field FROM data"; 27 var_dump($row[$field]); 32 foreach (my_mysqli_data_fields() as $field_name => $field) {
|
H A D | mysqli_stmt_get_result_metadata_fetch_field.phpt | 2 mysqli_stmt_get_result() - meta data, field info 40 while ($field = $res->fetch_field()) { 41 var_dump($field); 48 if ($field->charsetnr != $charsetInfo->number) { 51 $charsetInfo->number, $field->charsetnr); 53 if ($field->length != $charsetInfo->max_length) { 55 $charsetInfo->max_length, $field->max_length);
|
H A D | fake_server.inc | 100 if (!isset($fields[$field])) { 101 throw new Exception("Unknown field $field"); 103 return $fields[$field]; 343 $pr->charset = $field['charset']; 344 $pr->length = $field['length']; 345 $pr->field_type = $field['type']; 346 $pr->flags = $field['flags']; 347 $pr->decimal = $field['decimal']; 464 $pr3->charset = $field['charset']; 465 $pr3->length = $field['length']; [all …]
|
/PHP-8.2/ext/intl/calendar/ |
H A D | calendar.stub.php | 232 public function add(int $field, int $value): bool {} argument 250 public function clear(?int $field = null) {} // TODO make return type void argument 262 public function get(int $field): int|false {} argument 268 public function getActualMaximum(int $field): int|false {} argument 274 public function getActualMinimum(int $field): int|false {} argument 311 public function getGreatestMinimum(int $field): int|false {} argument 323 public function getLeastMaximum(int $field): int|false {} argument 335 public function getMaximum(int $field): int|false {} argument 353 public function getMinimum(int $field): int|false {} argument 426 public function roll(int $field, $value): bool {} 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() 414 zend_long field, value; in PHP_FUNCTION() local 423 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.2/ext/mysqlnd/ |
H A D | mysqlnd_ps_codec.c | 93 bool is_bit = field->type == MYSQL_TYPE_BIT; in ps_fetch_from_1_to_8_bytes() 96 if (field->flags & UNSIGNED_FLAG) { in ps_fetch_from_1_to_8_bytes() 110 if (field->flags & ZEROFILL_FLAG) { in ps_fetch_from_1_to_8_bytes() 173 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 1); in ps_fetch_int8() 182 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 2); in ps_fetch_int16() 191 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 4); in ps_fetch_int32() 200 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 8); in ps_fetch_int64() 225 dval = mysql_float_to_double(fval, (field->decimals >= NOT_FIXED_DEC) ? -1 : (int)field->decimals); in ps_fetch_float() 290 if (field->decimals > 0 && field->decimals < 7) { in ps_fetch_time() 378 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… 38 void ps_fetch_from_1_to_8_bytes(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pa…
|
/PHP-8.2/ext/date/tests/ |
H A D | gh11455.phpt | 16 $datetime->myProperty->field = str_repeat("hello", 3); 24 ["field"]=> 30 ["field"]=>
|
/PHP-8.2/ext/pgsql/tests/ |
H A D | 03sync_query.phpt | 140 Argument #3 must be a field name from this result set 141 pg_fetch_all_columns(): Argument #2 ($field) must be greater than or equal to 0 142 pg_fetch_all_columns(): Argument #2 ($field) must be less than the number of fields for this result… 145 Argument #2 must be a field name from this result set 146 pg_field_name(): Argument #2 ($field) must be greater than or equal to 0 147 pg_field_name(): Argument #2 ($field) must be less than the number of fields for this result set 148 pg_field_table(): Argument #2 ($field) must be greater than or equal to 0 149 pg_field_table(): Argument #2 ($field) must be less than the number of fields for this result set
|
/PHP-8.2/ext/opcache/tests/ |
H A D | bug79193.phpt | 2 Bug #79193: Incorrect type inference for self::$field =& $field
|
/PHP-8.2/ext/pgsql/ |
H A D | pgsql.stub.php | 522 function pg_field_name(PgSql\Result $result, int $field): string {} argument 528 function pg_fieldname(PgSql\Result $result, int $field): string {} argument 530 function pg_field_size(PgSql\Result $result, int $field): int {} argument 536 function pg_fieldsize(PgSql\Result $result, int $field): int {} argument 538 function pg_field_type(PgSql\Result $result, int $field): string {} argument 544 function pg_fieldtype(PgSql\Result $result, int $field): string {} argument 547 function pg_field_type_oid(PgSql\Result $result, int $field): string|int {} argument 549 function pg_field_num(PgSql\Result $result, string $field): int {} argument 555 function pg_fieldnum(PgSql\Result $result, string $field): int {} argument 601 function pg_fetch_all_columns(PgSql\Result $result, int $field = 0): array {} argument [all …]
|
/PHP-8.2/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.2/ext/odbc/ |
H A D | odbc.stub.php | 371 function odbc_result($statement, string|int $field): string|bool|null {} argument 407 function odbc_field_name($statement, int $field): string|false {} 410 function odbc_field_type($statement, int $field): string|false {} 413 function odbc_field_len($statement, int $field): int|false {} 419 function odbc_field_precision($statement, int $field): int|false {} 422 function odbc_field_scale($statement, int $field): int|false {} 425 function odbc_field_num($statement, string $field): int|false {}
|