1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
--TEST--
Bug #63217 (Constant numeric strings become integers when used as ArrayAccess offset)
--INI--
opcache.enable_cli=1
opcache.enable=1
opcache.optimization_level=-1
--FILE--
<?php
class Test implements ArrayAccess {
public function offsetExists($offset): bool {
echo "offsetExists given ";
var_dump($offset);
return true;
}
public function offsetUnset($offset): void {
echo "offsetUnset given ";
var_dump($offset);
}
public function offsetSet($offset, $value): void {
echo "offsetSet given ";
var_dump($offset);
}
public function offsetGet($offset): mixed {
echo "offsetGet given ";
var_dump($offset);
return null;
}
}
$test = new Test;
/* These should all produce string(...) "..." output and not int(...) */
isset($test['0']);
isset($test['123']);
unset($test['0']);
unset($test['123']);
$test['0'] = true;
$test['123'] = true;
$foo = $test['0'];
$foo = $test['123'];
/* These caused the same bug, but in opcache rather than the compiler */
isset($test[(string)'0']);
isset($test[(string)'123']);
unset($test[(string)'0']);
unset($test[(string)'123']);
$test[(string)'0'] = true;
$test[(string)'123'] = true;
$foo = $test[(string)'0'];
$foo = $test[(string)'123'];
/**
* @see https://github.com/php/php-src/pull/2607#issuecomment-313781748
*/
function test(): string {
$array["10"] = 42;
foreach ($array as $key => $value) {
return $key;
}
}
var_dump(test());
/**
* Make sure we don't break arrays.
*/
$array = [];
$key = '123';
$array[$key] = 1;
$array['321'] = 2;
$array['abc'] = 3;
var_dump($array);
/**
* Make sure that we haven't broken ArrayObject
*/
$ao = new ArrayObject();
$key = '123';
$ao = [];
$ao[$key] = 1;
$ao['321'] = 2;
$ao['abc'] = 3;
var_dump($ao);
?>
--EXPECT--
offsetExists given string(1) "0"
offsetExists given string(3) "123"
offsetUnset given string(1) "0"
offsetUnset given string(3) "123"
offsetSet given string(1) "0"
offsetSet given string(3) "123"
offsetGet given string(1) "0"
offsetGet given string(3) "123"
offsetExists given string(1) "0"
offsetExists given string(3) "123"
offsetUnset given string(1) "0"
offsetUnset given string(3) "123"
offsetSet given string(1) "0"
offsetSet given string(3) "123"
offsetGet given string(1) "0"
offsetGet given string(3) "123"
string(2) "10"
array(3) {
[123]=>
int(1)
[321]=>
int(2)
["abc"]=>
int(3)
}
array(3) {
[123]=>
int(1)
[321]=>
int(2)
["abc"]=>
int(3)
}
|