Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2. function esc_html( $html, $char_set = 'UTF-8' ) {
  3.     if ( empty( $html ) ) {
  4.         return '';
  5.     }
  6.  
  7.     $html = (string) $html;
  8.     $html = htmlspecialchars( $html, ENT_QUOTES, $char_set );
  9.  
  10.     return $html;
  11. }
  12.  
  13.  
  14.  
  15. $test_string = 'Mujeres Jóvenes';
  16.  
  17. var_dump( esc_html( $test_string ) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement