mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
15 lines
220 B
PHP
15 lines
220 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: kauffj
|
|
* Date: 8/13/16
|
|
* Time: 2:42 PM
|
|
*/
|
|
class Apc
|
|
{
|
|
public static function isEnabled()
|
|
{
|
|
return extension_loaded('apc') && ini_get('apc.enabled');
|
|
}
|
|
}
|