Files
safekat/ci4/app/Helpers/assets_helper.php

10 lines
276 B
PHP

<?php
if (!function_exists('versioned_asset')) {
function versioned_asset(string $path): string
{
$fullPath = FCPATH . $path;
$version = file_exists($fullPath) ? filemtime($fullPath) : time();
return site_url($path) . '?v=' . $version;
}
}