Really?

Try to execute this:
PHP Code:
foreach( get_class_methods('SplTempFileObject') as $methodName )
{
    echo 
$methodName '<br />';

or this to get more details:
PHP Code:
            echo '<pre>';
            
Reflection::export( new ReflectionClass('SplTempFileObject') );
            echo 
'</pre>'