hxss/multidimensional-array
Composer 安装命令:
composer require hxss/multidimensional-array
包简介
Multidimensional array
README 文档
README
The library allows dynamically create and use new dimensions for array. Array dimension - associative copy of the array where keys generates by user-func or automaticaly using column of arrays items.
Basic example
$mArray = new MultidimensionalArray([
0 => [
'name' => 'name1',
'prop' => 'prop1',
'key' => 'value1'
],
1 => [
'name' => 'name5',
'prop' => 'prop5',
'key' => 'value5'
],
2 => [
'name' => 'name2',
'prop' => 'prop2',
'key' => 'value2'
],
3 => [
'name' => 'name6',
'prop' => 'prop5',
'key' => 'value6'
],
]);
print_r($mArray->by('prop')); // or $mArray->byProp()
Output:
[
'prop1' => [
'name' => 'name1',
'prop' => 'prop1',
'key' => 'value1'
],
'prop5' => [
'name' => 'name6',
'prop' => 'prop5',
'key' => 'value6'
],
'prop2' => [
'name' => 'name2',
'prop' => 'prop2',
'key' => 'value2'
],
];
In this example for $mArray was dynamically created dimension named prop that automatically creates associative copy of the array using items column prop for keys.
The dimension will reflect each master-arrays updates. If any item in $mArray will added/removed or master-array will be updated - dimensions array will do it too.
Changes of dimension array doesn't affect master-array.
User-func
To customise generation of dimension keys the Dimension class is used:
$mArray->addDimension(
new Dimension('cstmProp', function($k, $v) {
return $k . '_' . $v['prop'];
})
);
print_r($mArray->byCstmProp());
Output:
[
'0_prop1' => [
'name' => 'name1',
'prop' => 'prop1',
'key' => 'value1'
],
'1_prop5' => [
'name' => 'name5',
'prop' => 'prop5',
'key' => 'value5'
],
'2_prop2' => [
'name' => 'name2',
'prop' => 'prop2',
'key' => 'value2'
],
'3_prop5' => [
'name' => 'name6',
'prop' => 'prop5',
'key' => 'value6'
],
];
Dimension constructor takes:
- name;
- (optional) callable key-generator, that should takes key and value of each master-array item and return new key for the dimension;
- (optional, default - false)
updateOnSortflag, that allows to update dimension array on master-array sorting.
hxss/multidimensional-array 适用场景与选型建议
hxss/multidimensional-array 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 88 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 06 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 hxss/multidimensional-array 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hxss/multidimensional-array 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 88
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-06-03