mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
This cache is implemented in two levels: A EG(callable_convert_cache) global that maps zend_function pointers to a shared callable instance, and a CALLABLE_CONVERT cache slot to remember the result of the hash table lookup. Fixes GH-19754 Closes GH-19863
9 lines
115 B
PHP
9 lines
115 B
PHP
--TEST--
|
|
FCCs are cached and shared
|
|
--FILE--
|
|
<?php
|
|
var_dump(strlen(...) === strlen(...));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|