PHP Classes

File: src/helpers.php

Recommend this page to a friend!
  Classes of Mohamed Nabil   PHP Style Template Engine   src/helpers.php   Download  
File: src/helpers.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Style Template Engine
Process templates compiling them into PHP scripts
Author: By
Last change: fixing null error for htmlspecialchars function in php 8.00+
Date: 1 year ago
Size: 95 bytes
 

Contents

Class file image Download
<?php

 
function _esc($string)
 {
         return
htmlspecialchars($string??'',ENT_QUOTES);
 }