Вход Регистрация
Файл: severus/application/helpers/utility_helper.php
Строк: 191
<?php
function format_bytes($bytes$is_drive_size=true$beforeunit='<span>'$afterunit='</span>')
{
    
$labels = array('B','KB','MB','GB','TB');
    for(
$x 0$bytes >= 1000 && $x < (count($labels) - 1); $bytes /= 1000$x++); // use 1000 rather than 1024 to simulate HD size not real size
    
if($labels[$x] == "TB") return(round($bytes, ($is_drive_size)?1:2).$beforeunit.$labels[$x].$afterunit);
    else return(
round($bytes, ($is_drive_size)?0:2).$beforeunit.$labels[$x].$afterunit);
}

function 
formatram($bytes)    {
    
$labels = array('B','KB','MB','GB','TB');
    for(
$x 0$bytes >= 1024 && $x < (count($labels) - 1); $bytes /= 1024$x++); 
    return 
round($bytes1).$labels[$x];
}


function 
split_text($text$len=18) {
    if(
strlen($text) > $len) {
        return 
substr($text0$len)."<br />".substr($text$len);
    } else return 
$text;
}

function 
setup_pause($msec) { // usleep doesnt seem to be working for windows servers, trying this instead
   
$usec $msec 1000;
   
socket_select($read NULL$write NULL$sock = array(socket_create (AF_INETSOCK_RAW0)), 0$usec);
}

function 
write_download($data) {

    
// Config path
    
$template_path     'application/config/download_script.php';
    
$output_path     'application/config/download.php';

    
// Open the file
    
$database_file file_get_contents($template_path);

    
$new  str_replace("%HOSTNAME%",$data['hostname'],$database_file);
    
$new  str_replace("%USERNAME%",$data['username'],$new);
    
$new  str_replace("%PASSWORD%",$data['password'],$new);
    
$new  str_replace("%DATABASE%",$data['database'],$new);

    
// Write the new database.php file
    
$handle fopen($output_path,'w+');

    
// Chmod the file, in case the user forgot
    
@chmod($output_path,0777);

    
// Verify file permissions
    
if(is_writable($output_path)) {

        
// Write the file
        
if(fwrite($handle,$new)) {
            return 
true;
        } else {
            return 
false;
        }

    } else {
        return 
false;
    }
}

function 
trans($line$default='') {
    
$CI =& get_instance();
    
$result $CI->lang->line($line);
    return (isset(
$result) && !empty($result)) ? $result $default;
}

function 
ip_online($ip){
    
$start microtime(true);
    
$ping = @fsockopen($domain80$errno$errstr10);
    
$stop  microtime(true);
    
$status 0;

    if (!
$ping){
        
$status false;  // Site is down
    
}
    else{
        
fclose($ping);
        
$status = ($stop $start) * 1000;
        
$status floor($status);
    }
    return 
$status;
}

function 
time_ago($date,$timestamp=false,$diff=true$granularity=2) {
    
$date $timestamp===true $date strtotime($date);
    
$difference = ($diff === true) ? (time() - $date) : $date;
    
$retval '';
    
$periods = array('decade' => 315360000,
        
'year' => 31536000,
        
'month' => 2628000,
        
'week' => 604800
        
'day' => 86400,
        
'hour' => 3600,
        
'minute' => 60,
        
'second' => 1);
                                 
    foreach (
$periods as $key => $value) {
        if (
$difference >= $value) {
            
$time floor($difference/$value);
            
$difference %= $value;
            
$retval .= ($retval ' ' '').'<span>'.$time.'</span>'.' ';
            
$retval .= (($time 1) ? $key.'s' $key);
            
$granularity--;
        }
        if (
$granularity == '0') { break; }
    }
    return 
$retval;      
}

function 
time_to_ago($date,$timestamp=false,$diff=true$granularity=2) {
    
$date $timestamp===true $date strtotime($date);
    
$difference = ($diff === true) ? (time() - $date) : $date;
    
$retval '';
    
$periods = array('decade' => 315360000,
        
'year' => 31536000,
        
'month' => 2628000,
        
'week' => 604800
        
'day' => 86400,
        
'hour' => 3600,
        
'minute' => 60,
        
'second' => 1);
                                 
    foreach (
$periods as $key => $value) {
        if (
$difference >= $value) {
            
$time round($difference/$value);
            
$difference %= $value;
            
$retval .= ($retval ' ' '').'<span>'.$time.'</span>'.' ';
            
$retval .= (($time 1) ? $key.'s' $key);
            
$granularity--;
        }
        if (
$granularity == '0') { break; }
    }
    return 
$retval;      
}

function 
is_demo($redirect) {
    
$CI =& get_instance();
    if(
ENVIRONMENT === "testing") {
        
$CI->session->set_flashdata('flash_errors''<p class="error flashmessage">Not available in demo mode</p>');
        
redirect($redirect);
        exit();
    }
}

function 
deleteDir($path)
{
    return 
is_file($path) ?
            @
unlink($path) :
            
array_map(__FUNCTION__glob($path.'/*')) == @rmdir($path);
}

function 
load_language() {
    
$CI =& get_instance();
    
$lang getDefaultLanguage();
    
$set_lang "en";
    if(isset(
$_SESSION["user_lang"]) && !empty($_SESSION["user_lang"])) {
        
$CI->lang->load('severus'$_SESSION["user_lang"]);
    } else {
        if (
$handle opendir(realpath($_SERVER["DOCUMENT_ROOT"]).'/application/language/')) {
            while (
false !== ($entry readdir($handle))) {
                if (
$entry != "." && $entry != "..") {
                    if(
$entry === $lang) {
                        
$set_lang $entry;
                        break;
                    }
                }
            }
            
closedir($handle);
        }
        
$_SESSION["user_lang"] = $set_lang;
        
$CI->lang->load('severus'$set_lang);
    }
}


function 
getDefaultLanguage() {
   if (isset(
$_SERVER["HTTP_ACCEPT_LANGUAGE"])) return parseDefaultLanguage($_SERVER["HTTP_ACCEPT_LANGUAGE"]);
   else return 
parseDefaultLanguage(NULL);
   }

function 
parseDefaultLanguage($http_accept$deflang "en") {
   if(isset(
$http_accept) && strlen($http_accept) > 1)  {
      
# Split possible languages into array
      
$x explode(",",$http_accept);
      foreach (
$x as $val) {
         
#check for q-value and create associative array. No q-value means 1 by rule
         
if(preg_match("/(.*);q=([0-1]{0,1}.d{0,4})/i",$val,$matches))
            
$lang[$matches[1]] = (float)$matches[2];
         else
            
$lang[$val] = 1.0;
      }

      
#return default language (highest q-value)
      
$qval 0.0;
      foreach (
$lang as $key => $value) {
         if (
$value $qval) {
            
$qval = (float)$value;
            
$deflang $key;
         }
      }
   }
   return 
strtolower(substr($deflang,0,2));
}
?>
Онлайн: 1
Реклама