mirror of
https://github.com/php/php-src.git
synced 2026-04-29 11:13:36 +02:00
17 lines
241 B
PHP
17 lines
241 B
PHP
--TEST--
|
|
Closure 015: converting to string/unicode
|
|
--FILE--
|
|
<?php
|
|
$x = function() { return 1; };
|
|
print (string) $x;
|
|
print "\n";
|
|
print (unicode) $x;
|
|
print "\n";
|
|
print $x;
|
|
print "\n";
|
|
?>
|
|
--EXPECT--
|
|
Closure object
|
|
Closure object
|
|
Closure object
|