<?php

$str = "free-online-film-view";
$tags = explode("-", $str);
$i=count($tags);
echo "<ul>";
foreach($tags as $tag){
	echo "<li>". implode('-', array_slice($tags,0, $i--))."</li>";
}
echo "</ul>";