acf_parse_types()ACF 5.0.0

acf_parse_types

This function will convert any numeric values to int and trim strings

No Hooks.

Returns

$var. (mixed)

Usage

acf_parse_types( $array );
$array(required)
.

Changelog

Since 5.0.0 Introduced.

acf_parse_types() code ACF 6.8.8

function acf_parse_types( $array ) {
	return array_map( 'acf_parse_type', $array );
}