Dup Ver Goto 📝

BreadcrumbGenerator

PT2/aw/lang/php does not exist
To
17 lines, 39 words, 442 chars Page 'BreadcrumbGenerator' does not exist.

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);