Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/demo.intellicart.co/vendor/mrclay/minify/static/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/demo.intellicart.co/vendor/mrclay/minify/static/lib.php
<?php

namespace Minify\StaticService;

/**
 * Build a URI for the static cache
 *
 * @param string $static_uri E.g. "/min/static"
 * @param string $query E.g. "b=scripts&f=1.js,2.js"
 * @param string $type "css" or "js"
 * @return string
 */
function build_uri($static_uri, $query, $type)
{
    $static_uri = rtrim($static_uri, '/');
    $query = ltrim($query, '?');

    $ext = ".$type";
    if (substr($query, - strlen($ext)) !== $ext) {
        $query .= "&z=$ext";
    }

    $cache_time = get_cache_time();

    return "$static_uri/$cache_time/$query";
}

/**
 * Get the name of the current cache directory within static/. E.g. "1467089473"
 *
 * @param bool $auto_create Automatically create the directory if missing?
 * @return null|string null if missing or can't create
 */
function get_cache_time($auto_create = true)
{
    foreach (scandir(__DIR__) as $entry) {
        if (ctype_digit($entry)) {
            return $entry;
            break;
        }
    }

    if (!$auto_create) {
        return null;
    }

    $time = (string)time();
    if (!mkdir(__DIR__ . "/$time")) {
        return null;
    }

    return $time;
}

function flush_cache()
{
    $time = get_cache_time(false);
    if ($time) {
        remove_tree(__DIR__ . "/$time");
    }
}

function remove_tree($dir)
{
    $files = array_diff(scandir($dir), array('.', '..'));

    foreach ($files as $file) {
        is_dir("$dir/$file") ? remove_tree("$dir/$file") : unlink("$dir/$file");
    }

    return rmdir($dir);
}

Spamworldpro Mini