lang/php/ BreadcrumbGenerator


Turn /hello/world/mr/flibble into /hello/world/mr/flibble

<?php

function bread($path) {
  $xs = explode("/",trim($path,"/"));
  $ys = array();
  $z = ""; # accumulate path
  foreach($xs as $x) {
    $z .= "/$x";
    array_push($ys,"[$x]($z)");
  }
  return "/".implode("/",$ys);
}
$test_path = "/hello/world/mr/flibble";
echo bread($test_path);