D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
www
/
cas
/
application
/
libraries
/
util
/
Filename :
JSONHandler.php
back
Copy
<?php /** * Library For All Util Tasks Related To Sessions * * @author Softpro India Pvt. Ltd. */ defined('BASEPATH') OR exit('No direct script access allowed'); class JSONHandler { public static function readJSON($filePointer) { $strJsonFileContents = file_get_contents($filePointer); return json_decode($strJsonFileContents); } }