Fixed paths isbn cache
This commit is contained in:
parent
403dc490b4
commit
8326a75a85
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
function cache_get($isbn){
|
function cache_get($isbn){
|
||||||
if(!file_exists("2/isbnCacheImg.json")) return false;
|
if(!file_exists("isbnCacheImg.json")) return false;
|
||||||
$data = json_decode(file_get_contents("2/isbnCacheImg.json"),true);
|
$data = json_decode(file_get_contents("isbnCacheImg.json"),true);
|
||||||
if(!$data) return false;
|
if(!$data) return false;
|
||||||
$res = $data[$isbn];
|
$res = $data[$isbn];
|
||||||
if(!$res) return false;
|
if(!$res) return false;
|
||||||
|
@ -10,7 +10,7 @@ function cache_get($isbn){
|
||||||
}
|
}
|
||||||
function cache_set($isbn,$url){
|
function cache_set($isbn,$url){
|
||||||
if(file_exists("2/isbnCacheImg.json")){
|
if(file_exists("2/isbnCacheImg.json")){
|
||||||
$data = json_decode(file_get_contents("2/isbnCacheImg.json"),true)?:[];
|
$data = json_decode(file_get_contents("isbnCacheImg.json"),true)?:[];
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
$data = [];
|
$data = [];
|
||||||
|
|
Reference in New Issue
Block a user