Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IgorGavrilenko/9eb6a7445b2d059a8ab2fc82e15e9072 to your computer and use it in GitHub Desktop.
Save IgorGavrilenko/9eb6a7445b2d059a8ab2fc82e15e9072 to your computer and use it in GitHub Desktop.
php класс для текущей стр
<?php
list($class) = explode('?', $_SERVER['REQUEST_URI']);
$class = str_replace(array('/', '.php'), '', $class);
?>
<?php echo $class ?>
////////////////////
$url = explode('/', $_SERVER['REQUEST_URI']);
$dir = $url[1] ? $url[1] : 'home';
?>
<body id="<?php echo $dir ?>">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment