Recommend this page to a friend! |
Download .zip |
Info | View files (7) | Download .zip | Reputation | Support forum (2) | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
Not enough user ratings | Total: 335 | All time: 7,037 This week: 293 |
Version | License | PHP version | Categories | |||
php-files-manipulati 3.5 | MIT/X Consortium ... | 5.6 | PHP 5, Files and Folders |
Description | Author | ||||||||||||||
This package can manipulate files and directories in several ways. Recommendations file php class pdo |
|
This package can manipulate files and directories in several ways.
It can perform several types of operations. Currently it can:
run this command
## usage
<?php
use Lablnet\Files;
require_once "../vendor/autoload.php";
$files = new Files();
//Write on file $files->open('test.txt','writeOnly')->write("I am test files");
// read the file var_dump($files->open('test.txt','readOnly')->read('test.txt'));
//delete the file $files->delete('test.txt');
//Make dir $files->mkDir('name');
//Change premission $files->permission('test.txt',0774);
//Delete files $files->deleteFiles(['test.txt']);
//Copy files $files->copyFiles('/name','dir/',['test.txt']);
//Move files $files->moveFiles('/','dir/',['test.txt']);
//Delete dirs $files->deleteDirs(['test.txt']);
//Copy dirs $files->copyDirs('/','dir/',['test.txt']);
//Move dirs $files->moveDirs('/','dir/',['test.txt']);
//File upload $status = $files->fileUpload($_FILES['file'],'/','image'); var_dump($status);
//Multiple file upload $status = $files->filesUpload($_FILES['file'],'/','image',count($_FILES['file']['name'])); var_dump($status);
Files |
File | Role | Description | ||
---|---|---|---|---|
example (2 files) | ||||
src (1 file) | ||||
.travis.yml | Data | Auxiliary data | ||
composer.json | Data | Auxiliary data | ||
LICENSE | Lic. | License text | ||
README.md | Doc. | Documentation |
Files | / | example |
File | Role | Description |
---|---|---|
index.php | Example | Example script |
index2.php | Example | Example script |
php-files-manipulati-2018-12-04.zip 6KB | |
php-files-manipulati-2018-12-04.tar.gz 4KB | |
Install with Composer |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.