How to Transform a String from Multi-Line to Single-Line in PHP? zendnwar August 18, 2014 PHP Basic 1 Comment It is very simple. Just add below code. echo str_replace(array(“\r”,”\n”),””, $str); Related Posts What is Constructors and Destructors? zendnwar July 25, 2012 What is Constructors and Destructors? CONSTRUCTOR : PHP allows developers to declare constructo .. How to Increase PHP memory limit zendnwar May 19, 2016 PHP memory limit sometimes makes it problem to upload. please check way to increase your memory ..