php8.5
Home/ Manual/ spl / spltempfileobject/ SplTempFileObject::__construct

SplTempFileObject::__construct

PHP function Edit on GitHub ✎

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

Construct a new temporary file object

Description

SplTempFileObject::__construct(int $maxMemory = 2 * 1024 * 1024)

Construct a new temporary file object.

Parameters

maxMemory

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 maxMemory is negative, only memory will be used. If maxMemory is zero, no memory will be used.

Errors/Exceptions

Throws a RuntimeException if an error occurs.

Examples

SplTempFileObject example

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

php
<?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;
}
?>

The above example will output something similar to:

output
Written 47 bytes to temporary file.

This is the first line
And this is the second.

See Also

Source: reference/spl/spltempfileobject/construct.xml · from the official PHP manual (php/doc-en)