All Projects → denisyukphp → tmpfile

denisyukphp / tmpfile

Licence: MIT License
Alternative to tmpfile() function

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to tmpfile

inplace
In-place file processing in Python
Stars: ✭ 21 (-4.55%)
Mutual labels:  file, tmpfile
replace-in-files
Replace text in one or more files or globs.
Stars: ✭ 21 (-4.55%)
Mutual labels:  file
watcher
The file system watcher that strives for perfection, with no native dependencies and optional rename detection support.
Stars: ✭ 37 (+68.18%)
Mutual labels:  file
Attachment-Handler-Swift
Access Camera, Photo Library, Video and File from User device using Swift 4
Stars: ✭ 20 (-9.09%)
Mutual labels:  file
Voila
Voila is a domain-specific language launched through CLI tool for operating with files and directories in massive amounts in a fast & reliable way.
Stars: ✭ 78 (+254.55%)
Mutual labels:  file
Jekyll
Call of Duty XAsset exporter that dumps raw assets from a game's memory.
Stars: ✭ 29 (+31.82%)
Mutual labels:  file
rust-magic
Rust high level bindings crate for the `libmagic` C library
Stars: ✭ 22 (+0%)
Mutual labels:  file
ShareX-CDN
Basic image, text & file uploader CDN for ShareX
Stars: ✭ 22 (+0%)
Mutual labels:  file
FireFiles
Powerful Android File Manager for everything that runs on Android OS (Android TV, Android Watch, Mobile, etc)
Stars: ✭ 37 (+68.18%)
Mutual labels:  file
config-parser
A slim, fully managed C# library for reading/writing .ini, .conf, .cfg etc configuration files.
Stars: ✭ 67 (+204.55%)
Mutual labels:  file
angular-file-dropzone
A simple file dropzone for Angular
Stars: ✭ 13 (-40.91%)
Mutual labels:  file
humansize
Humansize - A flexible crate for humanizing file sizes
Stars: ✭ 32 (+45.45%)
Mutual labels:  file
directory-structure
📦 Print a directory tree structure in your Python code.
Stars: ✭ 40 (+81.82%)
Mutual labels:  file
fuckwinfsdel
Solve Windows can't delete long paths file's bug.
Stars: ✭ 24 (+9.09%)
Mutual labels:  file
python-yamlable
A thin wrapper of PyYaml to convert Python objects to YAML and back
Stars: ✭ 28 (+27.27%)
Mutual labels:  file
RecordParser
Zero Allocation Writer/Reader Parser for .NET Core
Stars: ✭ 155 (+604.55%)
Mutual labels:  file
dfex
DNS File EXfiltration
Stars: ✭ 46 (+109.09%)
Mutual labels:  file
TLightFileStream
Implements a lightweight, high-performance, non-allocating advanced-record-based wrapper around the SysUtils file handling routines as an alternative to Classes.TFileStream.
Stars: ✭ 21 (-4.55%)
Mutual labels:  file
EncrypC
🔑 File Encryption Application using Python.
Stars: ✭ 14 (-36.36%)
Mutual labels:  file
HXCFE file selector
HxC Floppy Emulator file selector
Stars: ✭ 27 (+22.73%)
Mutual labels:  file

TmpFile

Build Status Latest Stable Version Packagist PHP Version Support Total Downloads License

Alternative to tmpfile() function.

Installation

You can install the latest version via Composer:

composer require denisyukphp/tmpfile

This package requires PHP 8.0 or later.

Quick usage

A temp file will be removed after PHP finished:

<?php

use TmpFile\TmpFile;

$tmpFile = new TmpFile();

file_put_contents($tmpFile, 'Meow!');

rename($tmpFile, '/path/to/meow.txt');

Read more about temp file on Habr.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].