Recommend this page to a friend! |
![]() |
Info | Documentation | ![]() |
![]() |
![]() |
Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
Not enough user ratings | Total: 44 | All time: 10,834 This week: 40![]() |
Version | License | PHP version | Categories | |||
array-mapper-php 1.0 | MIT/X Consortium ... | 7.2 | Algorithms, Data types, PHP 7 |
Description | Author | |
This package can create new arrays mapping values of entry keys. |
Helper for mapping arrays
composer require smoren/array-mapper
composer install
./vendor/bin/codecept build
./vendor/bin/codecept run unit tests/unit
use Smoren\ArrayMapper\ArrayMapper;
$source = [
[
'id' => 1,
'country' => 'Russia',
'city' => 'Moscow',
],
[
'id' => 2,
'country' => 'Russia',
'city' => 'Moscow',
],
[
'id' => 3,
'country' => 'Russia',
'city' => 'Tomsk',
],
[
'id' => 4,
'country' => 'Belarus',
'city' => 'Minsk',
],
[
'id' => 5,
'country' => 'Belarus',
],
];
$result = ArrayMapper::map($source, ['country', 'city'], true, true);
print_r($result);
/*
Array
(
[Russia] => Array
(
[Moscow] => Array
(
[0] => Array
(
[id] => 1
[country] => Russia
[city] => Moscow
)
[1] => Array
(
[id] => 2
[country] => Russia
[city] => Moscow
)
)
[Tomsk] => Array
(
[0] => Array
(
[id] => 3
[country] => Russia
[city] => Tomsk
)
)
)
[Belarus] => Array
(
[Minsk] => Array
(
[0] => Array
(
[id] => 4
[country] => Belarus
[city] => Minsk
)
)
)
)
*/
$result = ArrayMapper::map($source, ['country', 'city'], true, true, function($item) {
return $item['id'];
});
print_r($result);
/*
Array
(
[Russia] => Array
(
[Moscow] => Array
(
[0] => 1
[1] => 2
)
[Tomsk] => Array
(
[0] => 3
)
)
[Belarus] => Array
(
[Minsk] => Array
(
[0] => 4
)
)
)
*/
$source = [
[
'id' => 1,
'country' => 'Russia',
'city' => 'Moscow',
],
[
'id' => 2,
'country' => 'Russia',
'city' => 'Moscow',
],
[
'id' => 3,
'country' => 'Russia',
'city' => 'Tomsk',
],
[
'id' => 4,
'country' => 'Belarus',
'city' => 'Minsk',
],
];
$mapFields = [
'country',
function($item) {
return $item['city'].'-'.$item['id'];
}
];
$result = ArrayMapper::map($source, $mapFields, false, true, function($item) {
return $item['id'];
});
/*
Array
(
[Russia] => Array
(
[Moscow-1] => 1
[Moscow-2] => 2
[Tomsk-3] => 3
)
[Belarus] => Array
(
[Minsk-4] => 4
)
)
*/
![]() |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() |
||||
![]() |
||||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Lic. | License text | ||
![]() ![]() |
Doc. | Documentation |
![]() |
/ | src |
File | Role | Description |
---|---|---|
![]() |
Class | Class source |
![]() |
Class | Class source |
![]() |
/ | tests |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() |
||||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Aux. | Auxiliary script |
The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. |
![]() |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
User Comments (2) | ||||||||
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.