mirror of
https://github.com/php/php-src.git
synced 2024-12-22 08:20:23 +08:00
17 lines
166 B
Plaintext
17 lines
166 B
Plaintext
|
--TEST--
|
||
|
Closure::__invoke() is case insensitive
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$inc = function(&$n) {
|
||
|
$n++;
|
||
|
};
|
||
|
|
||
|
$n = 1;
|
||
|
$inc->__INVOKE($n);
|
||
|
var_dump($n);
|
||
|
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
int(2)
|