downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Clase și interfețe diverse> <SplTempFileObject
[edit] Last updated: Fri, 24 May 2013

view this page in

SplTempFileObject::__construct

(PHP 5 >= 5.1.2)

SplTempFileObject::__constructConstruct a new temporary file object

Descrierea

SplTempFileObject::__construct ([ int $max_memory ] )

Construct a new temporary file object.

Parametri

max_memory

The maximum amount of memory (in bytes, default is 2 MB) for the temporary file to use. If the temporary file exceeds this size, it will be moved to a file in the system's temp directory.

If max_memory is negative, only memory will be used. If max_memory is zero, no memory will be used.

Valorile întoarse

Nu este întoarsă nici o valoare.

Erori/Excepții

Throws a RuntimeException if an error occurs.

Exemple

Example #1 SplTempFileObject() example

This example writes a temporary file in memory which can be written to and read from.

<?php
$temp 
= new SplTempFileObject();
$temp->fwrite("This is the first line\n");
$temp->fwrite("And this is the second.\n");
echo 
"Written " $temp->ftell() . " bytes to temporary file.\n\n";

// Rewind and read what was written
$temp->rewind();
foreach (
$temp as $line) {
    echo 
$line;
}
?>

Exemplul de mai sus va afișa ceva similar cu:

Written 47 bytes to temporary file.

This is the first line
And this is the second.

Vedeți de asemenea



add a note add a note User Contributed Notes SplTempFileObject::__construct - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites