使用str_replace 来替换换行
$str = str_replace(array("\r\n", "\r", "\n"), "", $str);
2、使用正则替换
$str = preg_replace('//s*/', '', $str);
3、使用php定义好的变量 (建议使用)
$str = str_replace(PHP_EOL, '', $str);
php字符串加回车注意事项
php添加回车 注意事项 "\n\t" ,注意一定要用双引号,单引号直接输出这个字符。
$data = preg_replace_callback('/(([\n\r])\S+?(jpg))/', function ($matches) {
/*为了设置图片有效期为当天*/
// error_log(json_encode($matches));
$http = "http://demo.sadfasf.com/a/";
$href = $http.$matches[0];
$href = str_replace(array("\r\n", "\r", "\n"), "", $href);
$href = DTools::getQiniuAntiLeechAccessUrlBasedOnTimestamp($href);
return "\r\n" .$href;
}, $data);