php-src/Zend/tests/closure_015.phpt
2008-07-14 09:49:03 +00:00

14 lines
194 B
PHP

--TEST--
Closure 015: converting to string/unicode
--FILE--
<?php
$x = function() { return 1; };
print (string) $x;
print "\n";
print $x;
print "\n";
?>
--EXPECT--
Closure object
Closure object