D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
www
/
cas
/
application
/
libraries
/
util
/
Filename :
FileHandler.php
back
Copy
<?php /** * Library For All Util Tasks Related To File Handling * * @author Softpro India Pvt. Ltd. */ defined('BASEPATH') OR exit('No direct script access allowed'); class FileHandler { public function __construct() { $CI = & get_instance(); $CI->load->helper('file'); } public static function createFile($pathToCreateFile, $content) { write_file($pathToCreateFile, $content); } }