blob: 367de45fff51327e18171142bde8510ae8d5c2a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Reflection::getClosureThis()
--FILE--
<?php
$closure = function($param) { return "this is a closure"; };
$rf = new ReflectionFunction($closure);
var_dump($rf->getClosureThis());
echo "Done!\n";
?>
--EXPECTF--
NULL
Done!
|