Advertisement
Skorpius

Escape chars function

Feb 17th, 2023
972
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.  
  3.     //Escape chars - use when collecting data from database to output to page or returning data to a form for user
  4.     function e($text){
  5.         return htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
  6.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement