mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.3'
* PHP-8.3: Fixed GH-12748: Function JIT emits "could not convert to int" warning at the same time as invalid offset Error
This commit is contained in:
@@ -1128,8 +1128,11 @@ try_string_offset:
|
||||
dim = Z_REFVAL_P(dim);
|
||||
goto try_string_offset;
|
||||
default:
|
||||
zend_illegal_container_offset(ZSTR_KNOWN(ZEND_STR_STRING), dim, BP_VAR_IS);
|
||||
break;
|
||||
zend_illegal_container_offset(ZSTR_KNOWN(ZEND_STR_STRING), dim,
|
||||
EG(current_execute_data)->opline->opcode == ZEND_ISSET_ISEMPTY_DIM_OBJ ?
|
||||
BP_VAR_IS : BP_VAR_RW);
|
||||
ZVAL_NULL(result);
|
||||
return;
|
||||
}
|
||||
|
||||
offset = zval_get_long_func(dim, /* is_strict */ false);
|
||||
|
||||
35
ext/opcache/tests/jit/gh12748.phpt
Normal file
35
ext/opcache/tests/jit/gh12748.phpt
Normal file
@@ -0,0 +1,35 @@
|
||||
--TEST--
|
||||
GH-12748: Function JIT emits "could not convert to int" warning at the same time as invalid offset Error
|
||||
--INI--
|
||||
opcache.enable=1
|
||||
opcache.enable_cli=1
|
||||
--FILE--
|
||||
<?php
|
||||
$container = "string";
|
||||
// Is
|
||||
try {
|
||||
echo "isset():\n";
|
||||
var_dump(isset($container[new stdClass()]));
|
||||
} catch (\Throwable $e) {
|
||||
echo $e->getMessage(), "\n";
|
||||
}
|
||||
try {
|
||||
echo "empty():\n";
|
||||
var_dump(empty($container[new stdClass()]));
|
||||
} catch (\Throwable $e) {
|
||||
echo $e->getMessage(), "\n";
|
||||
}
|
||||
try {
|
||||
echo "Coalesce():\n";
|
||||
var_dump($container[new stdClass()] ?? 'default');
|
||||
} catch (\Throwable $e) {
|
||||
echo $e->getMessage(), "\n";
|
||||
}
|
||||
?>
|
||||
--EXPECT--
|
||||
isset():
|
||||
bool(false)
|
||||
empty():
|
||||
bool(true)
|
||||
Coalesce():
|
||||
Cannot access offset of type stdClass on string
|
||||
Reference in New Issue
Block a user