php 嵌套的SS php数组示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 嵌套的SS php数组示例相关的知识,希望对你有一定的参考价值。
<?php
// Without push
$locations = ArrayList::Create(
[
ArrayData::create(
[
'locationTitle' => 'North',
'locationItems' => ArrayList::Create(
[
ArrayData::create(
[
'title' => 'test1'
]
),
ArrayData::create(
[
'title' => 'test2'
]
)
]
)
]
),
ArrayData::create(
[
'locationTitle' => 'East',
'locationItems' => ArrayList::Create(
[
ArrayData::create(
[
'title' => 'test3'
]
),
ArrayData::create(
[
'title' => 'test4'
]
)
]
)
]
)
]
);
// with push
$locations = ArrayList::Create();
$locations->push(
[
'locationTitle' => 'North',
'locationItems' => ArrayList::Create(
[
ArrayData::create(
[
'title' => 'test1'
]
),
ArrayData::create(
[
'title' => 'test2'
]
)
]
)
]
);
$locations->push(
[
'locationTitle' => 'East',
'locationItems' => ArrayList::Create(
[
ArrayData::create(
[
'title' => 'test3'
]
),
ArrayData::create(
[
'title' => 'test4'
]
)
]
)
]
);
以上是关于php 嵌套的SS php数组示例的主要内容,如果未能解决你的问题,请参考以下文章
PHP在连接键时将嵌套数组转换为单个数组?
如何使用 PHP 将日期数组转换为 3 级嵌套列表
php 数组
php数组上的严格标准消息
将嵌套数组转换为嵌套 html 块的递归 php 函数
PHP foreach 与嵌套数组?