class Wrapper

internal  
 

Provides isolation for thread safe file manipulation using stream nette.safe://

file_put_contents('nette.safe://myfile.txt', $content);

$content = file_get_contents('nette.safe://myfile.txt');

unlink('nette.safe://myfile.txt');

Constants

Protocol

Name of stream protocol - nette.safe://

deprecated PROTOCOL

Properties

?resource $context

Methods

static bool
register()

Registers protocol 'nette.safe://'.

bool
stream_open(string $path, string $mode, int $options)

Opens file.

void
stream_close()

Closes file.

stream_read(int $length)

Reads up to length bytes from the file.

stream_write(string $data)

Writes the string to the file.

bool
stream_truncate(int $size)

Truncates a file to a given length.

int
stream_tell()

Returns the position of the file.

bool
stream_eof()

Returns true if the file pointer is at end-of-file.

bool
stream_seek(int $offset, int $whence = SEEK_SET)

Sets the file position indicator for the file.

stream_stat()

Gets information about a file referenced by $this->handle.

url_stat(string $path, int $flags)

Gets information about a file referenced by filename.

bool
unlink(string $path)

Deletes a file.

bool
stream_set_option(int $option, int $arg1, int $arg2)

Does nothing, but since PHP 7.4 needs to be implemented when using wrapper for includes

Details

at line 52
static bool register()

Registers protocol 'nette.safe://'.

Return Value

bool

at line 65
bool stream_open(string $path, string $mode, int $options)

Opens file.

Parameters

string $path
string $mode
int $options

Return Value

bool

at line 103
void stream_close()

Closes file.

Return Value

void

at line 117
stream_read(int $length)

Reads up to length bytes from the file.

Parameters

int $length

at line 126
stream_write(string $data)

Writes the string to the file.

Parameters

string $data

at line 142
bool stream_truncate(int $size)

Truncates a file to a given length.

Parameters

int $size

Return Value

bool

at line 151
int stream_tell()

Returns the position of the file.

Return Value

int

at line 160
bool stream_eof()

Returns true if the file pointer is at end-of-file.

Return Value

bool

at line 169
bool stream_seek(int $offset, int $whence = SEEK_SET)

Sets the file position indicator for the file.

Parameters

int $offset
int $whence

Return Value

bool

at line 178
stream_stat()

Gets information about a file referenced by $this->handle.

at line 187
url_stat(string $path, int $flags)

Gets information about a file referenced by filename.

Parameters

string $path
int $flags

Deletes a file.

On Windows unlink is not allowed till file is opened

Parameters

string $path

Return Value

bool

at line 209
bool stream_set_option(int $option, int $arg1, int $arg2)

Does nothing, but since PHP 7.4 needs to be implemented when using wrapper for includes

Parameters

int $option
int $arg1
int $arg2

Return Value

bool