\n (newline) and \r (return) control characters are the same as

 and 
 ASCII control characters in HTML which is
CR (Carriage return) and LF (Line feeed).
But when we want check those out in Regex (regular expression) then they are different. In this case to match those in preg_split.
Therefore we could replace 
 and 
 with empty string and use str_split in stead. I am pretty sure it can be done different ways.
Here is my approach:
<?php
$cfg = "Some text will go in new line";
$cfg = str_replace(" ", "", $cfg);
$cfg = str_replace(" ", "", $cfg);
$blackShopArray = str_split($cfg);
$blackShopColumn = '';
foreach ($blackShopArray as $shop)
{
$blackShopColumn .= $shop . "<br/>";
}
echo $blackShopColumn;
?>
Some references:
` would be the same. Or `preg_replace` with `
`. – AbraCadaver Nov 03 '15 at 19:20