Update storage.php

This commit is contained in:
Namhyeon Go 2018-05-26 02:00:11 +09:00 committed by GitHub
parent 2231921bc0
commit 678bec80ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,6 +115,12 @@ if(!function_exists("read_storage_file")) {
}
}
if(!function_exists("remove_storage_file")) {
function remove_storage_file($filename, $options=array()) {
return @unlink($filename);
}
}
if(!function_exists("write_storage_file")) {
function write_storage_file($data, $options=array()) {
$result = false;