Exemple #1
0
function stripdata($filename)
{
    $contents = file_get_contents($filename);
    $strip_contents = stripcontents($contents);
    $f = @fopen($filename, "w");
    if ($f) {
        fwrite($f, $strip_contents);
        fclose($f);
    }
}
Exemple #2
0
<?php

$cron_p = "";
if (isset($_GET['p'])) {
    $cron_p = $_GET['p'];
}
$cron_profil = (int) trim($cron_p);
$cron_update = true;
include "common.php";
$servers_data = filesuck($cccam_host, $webinfo_port, $webinfo_user, $webinfo_pass, "/servers", "");
$servers_data = stripcontents($servers_data);
saveOnlineData($servers_data);
$clients_data = filesuck($cccam_host, $webinfo_port, $webinfo_user, $webinfo_pass, "/clients", "");
$clients_data = stripcontents($clients_data);
saveUsageData($clients_data);