Reputation: 369
What is the best way to do the following:
I get a path with an AJAX request
e.g. dir1/dir2/dir3/dir4
I need to present it like this on my webpage:
dir1 >> dir2 >> dir3 >> dir4
each of them being html anchor tags with the href attribute being
/dir1
/dir1/dir2
/dir1/dir2/dir3
/dir1/dir2/dir3/dir4
respectively
What is the most elegant and efficient way to achieve this?
so far, I'm doing something like this which i think is really dirty:
<?php
$dirs = explode(PATH_SEPARATOR, $this->metadata["path"]);
foreach ($dirs as $key=>$val) {
if ($val == '') {
continue;
}
$pathArray = array();
for ($i = 0; $i <= $key; $i++) {
array_push($pathArray, $dirs[$i]);
}
$path = implode('/', $pathArray);
echo " >> <a href=" . $path . ">" . truncate($val) . "</a>";
}
?>
Upvotes: 15
Views: 24714
Reputation: 667
Surprisingly, the method pathinfo
has not been mentioned here, see the official doc. It takes a full $path
(accepting both *nix and windows path formats) as a parameter and returns an array
containing the following:
pathinfo("/path/to/your/file.with.extension") == [
"dirname" => "/path/to/your",
"basename" => "file.with.extension",
"filename" => "file.with"
"extension" => "extension",
];
Upvotes: 0
Reputation: 4704
Maybe it is easier this way
preg_split("#/#", ltrim("example/example2/example3/etc/", "/"));
Upvotes: 0
Reputation: 4704
if all you need to do is explode by forward slash there is a simple solution that works everytime.
check this out
$path = 'dir1/dir2/dir3/dir4';
$array = explode('/', ltrim($path, '/'));
print_r($array);
enjoy :D
Upvotes: 0
Reputation: 12402
I'd do it like this...
<?php
$path = 'dir1/dir2/dir3/dir4';
$dirs = explode('/', $path);
while (count($dirs) > 0) {
$link = '/' . implode($dirs, '/');
$text = array_pop($dirs);
$breadcrumb = "<a href=\"$link\">$text</a>" . $breadcrumb;
if (count($dirs) > 0) {
$breadcrumb = ' >> ' . $breadcrumb;
}
}
echo $breadcrumb;
If you are getting this path based on the URL you shouldn't need to use DIRECTORY_SEPARATOR
because URLs should always use /
. If it is derived from the filesystem path you would need to swap it in instead of '/'
on line 4.
Upvotes: 1
Reputation: 610
Var 1
<?php
$str = '/dir1/dir2/dir3/dir4';
$arr = array_filter(explode('/',$str));
$out = array('/'.implode('/',$arr).'/');
while((array_pop($arr) and !empty($arr))){
$out[] = '/'.implode('/',$arr).'/';
};
print_r($out);
/*
Array(
[0] => /dir1/dir2/dir3/dir4/
[1] => /dir1/dir2/dir3/
[2] => /dir1/dir2/
[3] => /dir1/
)
*/
?>
Var 2 ( Links )
<?php
$str = '/dir1/dir2/dir3/dir4';
$arr = array_filter(explode('/',$str));
$out = array('<a href="/'.implode('/',$arr).'/">'.basename($str).'</a>');
while((array_pop($arr) and !empty($arr))){
$out[] = '<a href="/'.implode('/',$arr).'/">'.end($arr).'</a>';
};
print_r($out);
/*
Array
(
[0] => <a href="/dir1/dir2/dir3/dir4/">dir4</a>
[1] => <a href="/dir1/dir2/dir3/">dir3</a>
[2] => <a href="/dir1/dir2/">dir2</a>
[3] => <a href="/dir1/">dir1</a>
)
*/
?>
Upvotes: 1
Reputation: 54649
Something like this maybe (if I got your intention right):
<?php
$str = 'dir1/dir2/dir3/dir4';
$output = array();
$chunks = explode('/', $str);
foreach ($chunks as $i => $chunk) {
$output[] = sprintf(
'<a href="#/%s">%s</a>',
implode('/', array_slice($chunks, 0, $i + 1)),
$chunk
);
}
echo implode(' >> ', $output);
Output:
<a href="#/dir1">dir1</a> >>
<a href="#/dir1/dir2">dir2</a> >>
<a href="#/dir1/dir2/dir3">dir3</a> >>
<a href="#/dir1/dir2/dir3/dir4">dir4</a>
Upvotes: 15