Browse
For agents
About
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel
/
0.2.0
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel
v0.2.0
Switch version
1.7.1
1.7.0
1.6.0
1.5.2
trunk
0.1
0.2.0
0.2.1
0.3
0.3.1
0.3.2
0.3.3
0.3.4
0.4
0.4.1
0.4.2
0.4.3
1.0
1.1
1.2
1.3.1
1.4.0
1.4.1
1.5.0
1.5.1
All 26 releases
Overview
Code
flywp
/
includes
/
Opcache.php
Opcache.php
in FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel 0.2.0, at includes/Opcache.php
18 lines
320 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
FlyWP
;
4
5
class
Opcache
{
6
7
public
static
function
is_enabled
(
)
{
8
//
Check if OPcache is enabled
9
if
(
!
function_exists
(
'
opcache_get_status
'
)
)
{
10
return
false
;
11
}
12
13
$
status
=
opcache_get_status
(
)
;
14
15
return
$
status
[
'
opcache_enabled
'
]
===
true
;
16
}
17
}
18