<?php
#===============================================================================# Remove line breaks and tabs from a string#===============================================================================functionremoveLineBreaksAndTabs($string) {returnstr_replace(["\r","\n","\t"],NULL,$string);}
?>