I am unable to find any documentation on it.
Especially, I can't find any tutorials about that class.
Why? :confused:
Printable View
I am unable to find any documentation on it.
Especially, I can't find any tutorials about that class.
Why? :confused:
I've never even heard of it. :confused:
Really? :cool:
Try to execute this:
or this to get more details:PHP Code:foreach( get_class_methods('SplTempFileObject') as $methodName )
{
echo $methodName . '<br />';
}
PHP Code:echo '<pre>';
Reflection::export( new ReflectionClass('SplTempFileObject') );
echo '</pre>';