Вход Регистрация
Файл: install/inc/functions.php
Строк: 59
<?php

function br($msg$br '<br />') {
    return 
preg_replace("#((<br( ?/?)>)|n|r)+#i"$br$msg);
}

#переносы строк
#Вырезает все нечитаемые символы
function esc($text$br NULL) { 
    if (
$br != NULL) {
        for (
$i 0$i <= 31$i++) {
            
$text str_replace(chr($i), NULL$text);
        }
    } else {
        for (
$i 0$i 10$i++) {
            
$text str_replace(chr($i), NULL$text);
        }
        for (
$i 11$i 20$i++) {
            
$text str_replace(chr($i), NULL$text);
        }
        for (
$i 21$i <= 31$i++) {
            
$text str_replace(chr($i), NULL$text);
        }
    }
    return 
$text;
}

function 
output_text($str$br true$html true$smiles true$links true$bbcode true) {
    if (
$html == true) {
        
$str htmlentities($strENT_QUOTES'UTF-8');
    } 
#преобразуем все к нормальному перевариванию браузером


    
if ($br == true) {
        
$str br($str); #переносы строк
        
$str esc($str); #вырезаем все нечитаемые символы, которые могут нам подпортить разметку :)
    
} else {
        
//$str=br($str, ' '); #пробелы вместо переносов
        
$str esc($str); #вырезаем все нечитаемые символы, которые могут нам подпортить разметку :)
    
}
    return 
$str#возвращаем обработанную строку
}
#вывод сообщений
function msg($msg) {
    echo 
"<div class='msg'>$msg</div>n";
}

function 
passgen($len 32) {
    
$password '';
    
$small 'abcdefghijklmnopqrstuvwxyz';
    
$large 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    
$numbers '1234567890';

    for (
$i 0$i $len$i++) {
        switch (
mt_rand(13)) {
            case 
:
                
$password .= $large [mt_rand(025)];
                break;
            case 
:
                
$password .= $small [mt_rand(025)];
                break;
            case 
:
                
$password .= $numbers [mt_rand(09)];
                break;
        }
    }
    return 
$password;
}
$passgen passgen();

#сохранение настроек системы
function save_settings($set){
    if (
$fopen = @fopen('sys/ini/settings.ini''w')) {
        
$ini_file = array('[SYSTEM]');
        foreach (
$set as $key => $value) {
            
$ini_file[] = $key '="' htmlentities((string) $valueENT_QUOTES'UTF-8') . '";';
        }
        
fputs($fopenimplode("rn"$ini_file));
        
fclose($fopen);
        return 
true;
    } else {
        return 
false;
    }
}

#рекурсивное удаление папки
function delete_dir($dir) {
    if (
is_dir($dir)) {
        
$od opendir($dir);
        while (
$rd readdir($od)) {
            if (
$rd == '.' || $rd == '..') {
                continue;
            }
            if (
is_dir("$dir/$rd")) {
                @
chmod("$dir/$rd"0777);
                
delete_dir("$dir/$rd");
            } else {
                @
chmod("$dir/$rd"0777);
                @
unlink("$dir/$rd");
            }
        }
        
closedir($od);
        @
chmod("$dir"0777);
        return @
rmdir("$dir");
    } else {
        @
chmod("$dir"0777);
        @
unlink("$dir");
    }
}
Онлайн: 1
Реклама