wpseek.com
A WordPress-centric search engine for devs and theme authors
map_deep › WordPress Function
Since4.4.0
Deprecatedn/a
› map_deep ( $value, $callback )
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: |
Maps a function to all non-iterable elements of an array or an object.
This is similar toarray_walk_recursive()
but acts upon objects too.Source
function map_deep( $value, $callback ) { if ( is_array( $value ) ) { foreach ( $value as $index => $item ) { $value[ $index ] = map_deep( $item, $callback ); } } elseif ( is_object( $value ) ) { $object_vars = get_object_vars( $value ); foreach ( $object_vars as $property_name => $property_value ) { $value->$property_name = map_deep( $property_value, $callback ); } } else { $value = call_user_func( $callback, $value ); } return $value; }