|
-
June 3rd, 2008, 07:11 AM
#1
[PHP] SplTempFileObject
I am unable to find any documentation on it.
Especially, I can't find any tutorials about that class.
Why?
Ipsens
-
June 3rd, 2008, 08:15 AM
#2
Re: [PHP] SplTempFileObject
I've never even heard of it.
If the post was helpful...Rate it! Remember to use [code] or [php] tags.
-
June 3rd, 2008, 08:33 AM
#3
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|