Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
wpide
/
App
/
Services
/
Tmpfs
:
TmpfsInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WPIDE\App\Services\Tmpfs; interface TmpfsInterface { public function exists(string $filename): bool; public function findAll($pattern): array; public function write(string $filename, $data, $append); public function read(string $filename): string; public function readStream(string $filename): array; public function remove(string $filename); public function getFileLocation(string $filename): string; public function clean(int $older_than); }