ninja_forms_htmlspecialchars_deep
The Ninja Forms ninja forms htmlspecialchars deep function.
Description
ninja_forms_htmlspecialchars_deep( $value );
Parameters (1)
- 0. $value
- The value.
Usage
if ( !function_exists( 'ninja_forms_htmlspecialchars_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_htmlspecialchars_deep($value);
Defined (1)
The function is defined in the following location(s).
- /deprecated/includes/database.php
- function ninja_forms_htmlspecialchars_deep( $value ) {
- $value = is_array($value) ?
- array_map('ninja_forms_htmlspecialchars_deep', $value) :
- htmlspecialchars( $value );
- return $value;
- }