mirror of
https://github.com/optim-enterprises-bv/control-pane.git
synced 2025-10-30 01:22:24 +00:00
17 lines
319 B
PHP
17 lines
319 B
PHP
<?php
|
|
|
|
class Utils
|
|
{
|
|
public static function gen_uri_chunks($uri)
|
|
{
|
|
$uri_chunks = [];
|
|
if(!empty($uri)){
|
|
$str=str_replace('/index.php','',$uri);
|
|
$uri_chunks=explode('/',$str);
|
|
}else if(isset($_POST['path'])){
|
|
$str=trim($_POST['path'],'/');
|
|
$uri_chunks=explode('/',$str);
|
|
}
|
|
return $uri_chunks;
|
|
}
|
|
} |