根据URL生成父子数组
我有以下 url /dir1/dir2/page.php
我需要从上面的 url 生成父子关系的数组。
/dir1
|
|
/dir2/
|
|
page.php
例如:
array('dir1'=> array(
'child' => array( 'dir2' => array(
'child' => array(
'page' => array())))));
我尝试使用递归函数但无法弄清楚逻辑。 如果您需要更多解释,请告诉我。
I have the following url /dir1/dir2/page.php
I need to generate a an array of the parent->child relation form the above url.
/dir1
|
|
/dir2/
|
|
page.php
eg :
array('dir1'=> array(
'child' => array( 'dir2' => array(
'child' => array(
'page' => array())))));
I tried using the recursive function but not able to figure out the logic.
Please let me know if you need some more explanation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个递归方法(抱歉缺少注释,已经晚了):
它打印出:
Here's a recursive method (sorry for lack of comments, it's late):
It prints out:
这是来自论坛的复制/粘贴,所以我不知道它是否有效(我浏览了一下,它看起来合法)。
Here's a copy/paste from a forum, so I don't know that it works (I skimmed it, and it looks legit).
这是我专门针对这个问题编写的实际解决方案。不涉及递归!
这将返回与您在问题中发布的完全相同的数组。
Here is an actual solution that I wrote specifically for this problem. No recursion involved!
This returns the exact same array as you posted in your question.