Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
c5b42910
Commit
c5b42910
authored
Aug 28, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:yiisoft/yii2
* 'master' of github.com:yiisoft/yii2: refactored code.
parents
bdb77f33
172d9295
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
FileCache.php
framework/yii/caching/FileCache.php
+2
-6
No files found.
framework/yii/caching/FileCache.php
View file @
c5b42910
...
@@ -71,11 +71,7 @@ class FileCache extends Cache
...
@@ -71,11 +71,7 @@ class FileCache extends Cache
public
function
exists
(
$key
)
public
function
exists
(
$key
)
{
{
$cacheFile
=
$this
->
getCacheFile
(
$this
->
buildKey
(
$key
));
$cacheFile
=
$this
->
getCacheFile
(
$this
->
buildKey
(
$key
));
if
((
$time
=
@
filemtime
(
$cacheFile
))
>
time
())
{
return
@
filemtime
(
$cacheFile
)
>
time
();
return
true
;
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -87,7 +83,7 @@ class FileCache extends Cache
...
@@ -87,7 +83,7 @@ class FileCache extends Cache
protected
function
getValue
(
$key
)
protected
function
getValue
(
$key
)
{
{
$cacheFile
=
$this
->
getCacheFile
(
$key
);
$cacheFile
=
$this
->
getCacheFile
(
$key
);
if
(
(
$time
=
@
filemtime
(
$cacheFile
)
)
>
time
())
{
if
(
@
filemtime
(
$cacheFile
)
>
time
())
{
return
@
file_get_contents
(
$cacheFile
);
return
@
file_get_contents
(
$cacheFile
);
}
else
{
}
else
{
return
false
;
return
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment