php如何判断字符串中是否存在换行符

2025年02月12日 建站教程

php如何判断字符串中是否存在换行符,下面web建站小编给大家简单介绍一下具体实现代码!

实现代码如下:

$string = 'Hello
    world';
 
if(strstr($string, "\n")) {
   echo '存在换行符';
}
else {
   echo '不存在换行符';
}

本文链接:http://so.lmcjl.com/news/23011/

展开阅读全文
相关内容