Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

_wp_iso_convert( array $match )

Helper function to convert hex encoded chars to ASCII


Description Description


Parameters Parameters

$match

(array) (Required) The preg_replace_callback matches array


Top ↑

Return Return

(string) Converted chars


Top ↑

Source Source

File: wp-includes/formatting.php

function _wp_iso_convert( $match ) {
	return chr( hexdec( strtolower( $match[1] ) ) );
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.