欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php去除换行(回车换行)的三种方法

程序员文章站 2023-11-16 11:59:34
复制代码 代码如下:

复制代码 代码如下:

<?php  
 //php 不同系统的换行 
//不同系统之间换行的实现是不一样的 
//linux 与unix中用 \n 
//mac 用 \r 
//window 为了体现与linux不同 则是 \r\n 
//所以在不同平台上 实现方法就不一样 
//php 有三种方法来解决 

//1、使用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);  
?>