mirror of
https://github.com/php/php-src.git
synced 2025-01-10 21:14:37 +08:00
15 lines
140 B
PHP
Executable File
15 lines
140 B
PHP
Executable File
--TEST--
|
|
Instantiate stdClass
|
|
--FILE--
|
|
<?php
|
|
|
|
$obj = new stdClass;
|
|
|
|
echo get_class($obj)."\n";
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
stdClass
|
|
Done
|