ninja_forms_esc_html_deep
The Ninja Forms ninja forms esc html deep function.
Description
ninja_forms_esc_html_deep( $value );
Parameters (1)
- 0. $value
- The value.
Usage
if ( !function_exists( 'ninja_forms_esc_html_deep' ) ) { require_once ABSPATH . PLUGINDIR . 'ninja-forms/deprecated/includes/database.php'; } // The value. $value = null; // NOTICE! Understand what this does before running. $result = ninja_forms_esc_html_deep($value);
Defined (1)
The function is defined in the following location(s).
- /deprecated/includes/database.php
- function ninja_forms_esc_html_deep( $value ) {
- $value = is_array($value) ?
- array_map('ninja_forms_esc_html_deep', $value) :
- esc_html($value);
- return $value;
- }