remove linebreak from string php code example
Example 1: php replace return character
$string = str_replace("\n", "", $string);
$string = str_replace("\r", "", $string);
Example 2: remove line break html php
preg_replace( "/\r|\n/", "", $yourString );