I'm trying to add class name in my Concrete 5 theme. What's the elegant way to strip spaces and replace it with dashes then transform them to lower case?
I already tried lowering the case but I also need to replace the space with dashes (-)
Here's what my code look like:
<body class="<?php echo strtolower($c->getCollectionName()); echo ' '; echo strtolower($c->getCollectionTypeName()); ?>">
should look like this
<body class="home right-sidebar">
Thanks.