mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
14 lines
139 B
PHP
14 lines
139 B
PHP
--TEST--
|
|
Instantiate stdClass
|
|
--FILE--
|
|
<?php
|
|
|
|
$obj = new stdClass;
|
|
|
|
echo get_class($obj)."\n";
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
stdClass
|
|
Done
|