Files
citrus-cms/app/Functions/get-before-slash.php
T
2026-04-28 21:14:25 +03:00

8 lines
153 B
PHP

<?php
function getBeforeSlash($input) {
$input = str_replace("/141", "", $input);
$input = str_replace("/111", "", $input);
return $input;
}
?>