mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
RFC: https://wiki.php.net/rfc/fcc_in_const_expr Co-authored-by: Volker Dusch <volker@tideways-gmbh.com>
19 lines
196 B
PHP
19 lines
196 B
PHP
--TEST--
|
|
FCC in default argument
|
|
--FILE--
|
|
<?php
|
|
|
|
function test(
|
|
Closure $name = strrev(...)
|
|
) {
|
|
var_dump($name("abc"));
|
|
}
|
|
|
|
test();
|
|
test(strlen(...));
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(3) "cba"
|
|
int(3)
|