PHP program to print the size of the empty class
<?php
//PHP program to print the size of the empty class.
class Student
{
}
$S = new Student();
echo "Size of object: " . sizeof($S);
?>
Output
Size of object: 1
