1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/standard/tests/array/bug68553.phpt
George Peter Banyard 99fa740acb Use common function for TypeError on illegal offset access (#10544)
This merges all usages of emitting an offset TypeError into a new ZEND_API function
zend_illegal_container_offset(const zend_string* container, const zval *offset, int type);

Where the container should represent the type on which the access is attempted (e.g. string, array)
The offset zval that is used, where the error message will display its type
The type of access, which should be a BP_VAR_* constant, to get special message for isset/empty/unset
2023-06-06 11:28:19 +01:00

84 lines
1.4 KiB
PHP

--TEST--
Bug #68553 (array_column: null values in $index_key become incrementing keys in result)
--FILE--
<?php
$i = 100;
/* increase the resource id to make test stable */
while ($i--) {
$fd = fopen(__FILE__, "r");
fclose($fd);
}
$a = [
['a' => 10],
['a' => 20],
['a' => true],
['a' => false],
['a' => fopen(__FILE__, "r")],
['a' => -5],
['a' => 7.38],
['a' => null, "test"],
['a' => null],
];
var_dump(array_column($a, null, 'a'));
try {
var_dump(array_column([['a' => new stdClass]], null, 'a'));
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(array_column([['a' => []]], null, 'a'));
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECTF--
Warning: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
Deprecated: Implicit conversion from float 7.38 to int loses precision in %s on line %d
array(8) {
[10]=>
array(1) {
["a"]=>
int(10)
}
[20]=>
array(1) {
["a"]=>
int(20)
}
[1]=>
array(1) {
["a"]=>
bool(true)
}
[0]=>
array(1) {
["a"]=>
bool(false)
}
[%d]=>
array(1) {
["a"]=>
resource(%d) of type (stream)
}
[-5]=>
array(1) {
["a"]=>
int(-5)
}
[7]=>
array(1) {
["a"]=>
float(7.38)
}
[""]=>
array(1) {
["a"]=>
NULL
}
}
Cannot access offset of type stdClass on array
Cannot access offset of type array on array