Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
class Breadcrumb {
private $path = array();
public function __construct() {
$this->path = explode('/', $_SERVER['SCRIPT_NAME']);
}
public function printBreadcrumb() {
$path = "/";
$breadcrumb = "\t\t<ul id='breadcrumb'>\n";
$breadcrumb .= "\t\t\t<li><a href='$path'>home</a>></li>\n";
for($i = 0; $i < sizeof($this->path); $i++) {
if (!empty($this->path[$i])) {
$path .= ($i < sizeof($this->path)-1) ? $this->path[$i] . "/" : $this->path[$i];
$breadcrumb .= ($i < sizeof($this->path) - 1) ? "\t\t\t<li><a href='$path'>" . $this->path[$i] . "</a>></li>\n" : "\t\t\t<li><a href='$path'>" . substr($this->path[$i], 0, strrpos($this->path[$i], ".")) . "</a></li>\n";
}
}
$breadcrumb .= "\t\t</ul>\n";
return $breadcrumb;
}
}