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