Quantcast
Channel: Shani's Php CookBook
Viewing all articles
Browse latest Browse all 60

PHP remove hidden characters from text

$
0
0
PHP remove hidden character like line breaks and tabs and hidden character like following:


$description=ereg_replace( "\r\n", "", $row['short_description']);
$description=ereg_replace( "\r\t", "", $description);
$description=ereg_replace( "\r", "", $description);
$description=ereg_replace( "\t", "", $description);
$description=ereg_replace( "\n", "", $description);
$description=ereg_replace( "\xA0", "", $description);
$description=ereg_replace( "\x0B", "", $description);
$description=ereg_replace( '"', '""', $description);


 This really helps when you are creating a CSV file which has line breaks. Some softwares like magento doesn't import the csv file properly if you have line breaks or hidden characters in your text. It counts each hidden character as new line.

Viewing all articles
Browse latest Browse all 60

Trending Articles