Download the PHP package cs278/mktemp without Composer
On this page you can find all versions of the php package cs278/mktemp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package mktemp
Short Description Create temporary files and directories using PHP safely.
License MIT
Informations about the package mktemp
PHP mktemp
Create temporary files and directories in PHP, safely.
Sadly PHP is deficient when it comes to creating temporary files and directories in a safe and secure manner. This library aims to address these short-comings.
Usage
Functions
-
Cs278\Mktemp\temporaryFile(string|null $template, string|null $dir)
Create a temporary file with a supplied template for the name.
The template should be a string containing a sequence of at least 3 consecutive
X
characters, these characters will be replaced with a random component. The last valid sequence in the string will be used. If this argument isnull
a defaulttmp.XXXXXX
template will be used.The directory should be a path that exists and the user can write to, if this argument is not supplied the default temporary directory will be used.
A
Cs278\Mktemp\Exception\CreateFailedException
will be thrown if a file cannot be created. -
Cs278\Mktemp\temporaryDir(string|null $template, string|null $dir)
Create a temporary directory with a supplied template for the name.
The template should be a string containing a sequence of at least 3 consecutive
X
characters, these characters will be replaced with a random component. The last valid sequence in the string will be used. If this argument isnull
a defaulttmp.XXXXXX
template will be used.The directory should be a path that exists and the user can write to, if this argument is not supplied the default temporary directory will be used.
A
Cs278\Mktemp\Exception\CreateFailedException
will be thrown if a directory cannot be created.
Cs278\Mktemp\TempFile
-
TempFile::__construct(string|null $template, string|null $dir)
Create a temporary file object that manages the life cycle of the file system entity.
Arguments are the same as those documented for
temporaryFile()
. -
TempFile::getPath()
Return the path to the temporary file, this is mainly intended to be used when interacting with the file outside of PHP.
-
TempFile::open(string $mode)
Open the file for reading/writing according to the supplied mode, defaults to
r+
. Returns an\SplFileObject
that maybe used to manipulate the contents of the temporary file. -
TempFile::keep(string $newPath)
Persist the temporary file into permanent file at the path specified, returns a new
\SplFileInfo
representing the new file. -
TempFile::copyTo(resource $stream)
Copy the contents of the file into the supplied stream.
-
TempFile::release()
Removes the temporary file from disk.