rocket/utilities

此包已被废弃,不再维护。未建议任何替代包。

不属于任何类别的工具

dev-master / 1.0.x-dev 2016-01-02 17:59 UTC

This package is auto-updated.

Last update: 2023-08-16 18:39:05 UTC


README

这是 RocketPropelledTortoise CMS - Core 的子树分支。请不要在此处发送拉取请求

工作正在进行中,请勿在生产环境中使用

此仓库包含所有不属于特定组件的 RocketPropelledTortoise CMS 类

ParentChildTree

将树的平面表示转换为嵌套数组

 array(
    ['id' => 1, 'text' => 'parent'],
    ['id' => 2, 'text' => 'child', 'parent_id' => 1]
 );

array(
    ['id' => 0, 'childs' => array(
        ['id' => 1, 'text' => 'parent', 'childs' => array(
            ['id' => 2, 'text' => 'child', 'parent_id' => 1]
        )],
    )
);
``