Untitled

Anonymous
php
01/10/2023 12:51 PM
312 B
18
Indexable
function strip($text) { 
   return str_replace(array('<','"','\\'),array('&lt;','&quot;','&#92;'),stripslashes(trim($text))); 
}

function jStrip($text) { 
   return str_replace(array('<','"'),array('&lt;','&quot;'),trim($text)); 
}
Editor is loading...