str_replace -- Replace all occurrences of the search string with the replacement string

<?Php 
$test="Teststring:
test test 
test test test test"; 

echo ($test); 
?>
<?Php 
$test="Teststring:
test test 
test test test test"; 

echo str_replace(Chr(13), "<br>", $test);
?>