map_deep

函数


map_deep ( $value, $callback )
参数
  • (mixed)
    $value
    The array, object, or scalar.
    Required:
  • (callable)
    $callback
    The function to map onto $value.
    Required:
返回值
  • (mixed) The value with the callback applied to all non-arrays and non-objects inside it.
定义位置
  • wp-includes/formatting.php
    , line 5012
引入
4.4.0
弃用

Maps a function to all non-iterable elements of an array or an object.

This is similar to `array_walk_recursive()` but acts upon objects too.

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;
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。