mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
15 lines
281 B
Plaintext
15 lines
281 B
Plaintext
|
--TEST--
|
||
|
Closure 029: Testing lambda with instanceof operator
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
var_dump(function() { } instanceof closure);
|
||
|
var_dump(function(&$x) { } instanceof closure);
|
||
|
var_dump(@function(&$x) use ($y, $z) { } instanceof closure);
|
||
|
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
bool(true)
|
||
|
bool(true)
|
||
|
bool(true)
|