CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2006
    Posts
    352

    [PHP] SplTempFileObject

    I am unable to find any documentation on it.
    Especially, I can't find any tutorials about that class.

    Why?
    Ipsens

  2. #2
    Join Date
    May 2002
    Posts
    10,943

    Re: [PHP] SplTempFileObject

    I've never even heard of it.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  3. #3
    Join Date
    Jan 2006
    Posts
    352

    Re: [PHP] SplTempFileObject

    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>'
    Ipsens

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured