我怎样才能删除第一个正斜杠?

how can i remove the first forward slash?

如您所见,我在我的页面上显示了一些面包屑。但我想删除第一个正斜杠,我该怎么做?

现在看起来像这样: / 你在这里: /home /page1 /page2

但它必须是这样的: 你在这里:/home /page1 /page2

我已经尝试了很多,但似乎没有任何效果。

这是我的代码:

                    <?php
                    $crumbs = explode("/", $_SERVER["REQUEST_URI"]);

                    foreach ($crumbs as $crumb) {
                        echo ucfirst(str_replace(foldernaam,'u are here: ', $crumb  . " /"));
                    }
                    ?>

使用此代码:

$str = '/u are here /home /page1 /page2';
$str = ltrim($str, '/');
echo $str;

它会return你u are here /home /page1 /page2

您也可以使用此代码:

$str = '/u are here /home /page1 /page2';
$strs = substr($str, 0);

但是它会删除第一个字符,而上面给出的代码会删除适合您的查询的第一个正斜杠。