_wp_kses_decode_entities_chr
Regex callback for wp_kses_decode_entities().
Description
(string) _wp_kses_decode_entities_chr( (array) $match );
Returns (string)
Parameters (1)
- 0. $match (array)
- The match.
Usage
if ( !function_exists( '_wp_kses_decode_entities_chr' ) ) { require_once ABSPATH . WPINC . '/kses.php'; } // The match. $match = array(); // NOTICE! Understand what this does before running. $result = _wp_kses_decode_entities_chr($match);
Defined (1)
The function is defined in the following location(s).
- /wp-includes/kses.php
- function _wp_kses_decode_entities_chr( $match ) {
- return chr( $match[1] );
- }