设为首页收藏本站
天天打卡

 找回密码
 立即注册
搜索
查看: 66|回复: 13

PHP单文件实现代码去行首尾空格和去空行

[复制链接]

1

主题

49

回帖

121

积分

注册会员

积分
121
发表于 2024-4-20 08:24:32 来自手机 | 显示全部楼层 |阅读模式
示例代码
  1. <?php
  2. if($_GET["x"] == "cha"){
  3. $tips = isset($_POST['tips']) ? $_POST['tips'] : '';
  4. $tips = preg_replace('/^\s+|\s+$/m', "\r\n", $tips);//去首尾空格
  5. $tips = preg_replace('/(\r|\n)+/m', "\r\n", $tips);//去首尾空格
  6. echo "<h2><strong>代码去首尾空格+空行</strong>:</h2>\r\n";
  7. echo "<textarea>".Trim($tips)."</textarea>";
  8. exit();
  9. }
  10. ?>
  11. <!DOCTYPE html>
  12. <html>
  13. <head>
  14. <title>代码去首尾空格+空行</title>
  15. <meta charset="UTF-8">
  16. <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0">
  17. <meta name="apple-mobile-web-app-capable" content="yes" />
  18. <script type="text/javascript">
  19. console.log("问题反馈电话:","15058593138");
  20. console.log("问题反馈邮件:","admin@12391.net");
  21. function $(objId){
  22. return document.getElementById(objId);
  23. }
  24. function loadcha(xid) {
  25. var xmlhttp;
  26. var Stxt= "nums=aa";
  27. Stxt+="&tips="+ encodeURIComponent($("tips").value);
  28. //$("tips").innerHTML = "正在加载...";
  29. if (window.XMLHttpRequest) {
  30. xmlhttp = new XMLHttpRequest();
  31. } else {
  32. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  33. }
  34. xmlhttp.onreadystatechange = function() {
  35. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  36. var btxt = xmlhttp.response;
  37. if(btxt == "err01"){ $("tipx").innerHTML = "!"; return false;}
  38. $('tipx').innerHTML = xmlhttp.response;
  39. }
  40. }
  41. xmlhttp.open("POST", "?x=cha&tt="+Math.random(), true);
  42. xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  43. xmlhttp.send(Stxt);
  44. }
  45. </script>
  46. <style>
  47. div,#tipx{display:block;width:99.7%;border:0;margin-top:5px;}
  48. textarea{display:block;width:99.7%;border:1px solid #ccc;height:160px;}
  49. table{margin:20px auto;border-left:1px solid #a2c6d3;border-top:3px solid #0180CF;font-size:12px;width:99.7%;}
  50. table td{border-right:1px solid #a2c6d3;border-bottom:1px solid #a2c6d3;padding:2px;word-wrap:break-word;word-break:break-all;}
  51. td{min-width:30px;max-width:490px;}
  52. #submit{ height:35px;}
  53. </style>
  54. </head>
  55. <body>
  56. <form class="form" id="form" method="POST" act="?act=cha" >
  57. <h3>代码去首尾空格+空行</h3>
  58. <textarea id="tips">
  59. 1 2
  60. 2 3
  61.         制表符       
  62. 我你
  63. </textarea>
  64. <input type="button" id="submit" value="提交发送" onclick="loadcha('xid')">
  65. <div id="tipx"></div>
  66. </form>
  67. </body>
  68. </html>
复制代码
知识补充
除了上文的方法,小编还为大家整理了一些PHP去除代码空行的方法,希望对大家有所帮助
去除字符串两边的空格、空字符串和换行符:
使用trim()函数去除字符串两边的空格和空字符串,例如:
  1. $str = "  Hello World!  ";
  2. $trimmed = trim($str);
  3. echo $trimmed;
复制代码
使用preg_replace()函数去除字符串中的空格、空字符串和换行符,例如:
  1. $str = "  Hello\nWorld!  ";
  2. $trimmed = preg_replace('/^\s+|\s+$/m', '', $str);
  3. echo $trimmed;
复制代码
使用str_replace()函数去除字符串中的空格、空字符串和换行符,例如:
  1. $str = "  Hello\nWorld!  ";
  2. $trimmed = str_replace(array("\n","\r","\t"),"",$str);
  3. echo $trimmed;
复制代码
去掉多余的空行
  1. <?php
  2. $str="i   am    a     book\n\n\n\n\nmoth";
  3. //去除所有的空格和换行符
  4. echo preg_replace("/[\s]{2,}/","",$str).&#39;<br>&#39;;
  5. //去除多余的空格和换行符,只保留一个
  6. echo preg_replace("/([\s]{2,})/","\\1",$str);
  7. //去除多余的空格或换行 $text = preg_replace("/(\r\n|\n|\r|\t)/i", &#39;&#39;, $text);
  8. $lastSeveralLineContentsArr = preg_replace("/([ |\t]{0,}[\n]{1,}){2,}/","",$lastSeveralLineContentsArr);
  9. //对Html里有连续的空行或tab给正则过滤掉>
  10. ?>
复制代码
php清除html,空格,换行,提取纯文字的方法:
方法一:
  1. function DeleteHtml($str)
  2. {
  3.     $str = trim($str); //清除字符串两边的空格
  4.     $str = preg_replace("/\t/","",$str); //使用正则表达式替换内容,如:空格,换行,并将替换为空。
  5.     $str = preg_replace("/\r\n/","",$str);
  6.     $str = preg_replace("/\r/","",$str);
  7.     $str = preg_replace("/\n/","",$str);
  8.     $str = preg_replace("/ /","",$str);
  9.     $str = preg_replace("/  /","",$str);  //匹配html中的空格
  10.     return trim($str); //返回字符串
  11. }
复制代码
调用方法
  1. DeleteHtml($str);
复制代码
  1. $str
复制代码
为需要清除的页面字符串
方法二:
去除字符串内部的空行:
  1. $str = preg_replace("/(s*?r?ns*?)+/","n",$str);
复制代码
去除全部的空行,包括内部和头尾:
  1. $str = preg_replace('/($s*$)|(^s*^)/m', '',$str);
复制代码
到此这篇关于PHP单文件实现代码去行首尾空格和去空行的文章就介绍到这了,更多相关PHP单文件去空行内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

2

主题

82

回帖

207

积分

中级会员

积分
207
发表于 2024-5-26 02:13:54 | 显示全部楼层
太棒了!感谢分享这个信息!

1

主题

41

回帖

105

积分

注册会员

积分
105
发表于 2024-6-26 05:48:08 | 显示全部楼层
我想了解更多

0

主题

44

回帖

87

积分

注册会员

积分
87
发表于 2024-7-11 10:42:49 | 显示全部楼层
同意你的观点,我们有共鸣。

0

主题

56

回帖

106

积分

注册会员

积分
106
发表于 2024-7-12 22:07:11 | 显示全部楼层
我不太确定,可能需要再确认一下。

0

主题

51

回帖

103

积分

注册会员

积分
103
发表于 2024-7-14 18:12:59 | 显示全部楼层
我完全同意你的观点

0

主题

33

回帖

64

积分

注册会员

积分
64
发表于 2024-8-20 02:50:08 | 显示全部楼层
同意!

2

主题

49

回帖

154

积分

注册会员

积分
154

热心会员付费会员

发表于 2024-8-23 18:44:34 | 显示全部楼层
保持尊重和礼貌对待其他成员是必要的。

0

主题

13

回帖

27

积分

新手上路

积分
27
发表于 2024-8-26 17:12:53 | 显示全部楼层
顶一个,观点非常中肯!

0

主题

67

回帖

132

积分

注册会员

积分
132
发表于 2024-9-19 21:54:07 | 显示全部楼层
嘎嘎嘎嘎嘎嘎嘎
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|爱云论坛 - d.taiji888.cn - 技术学习 免费资源分享 ( 蜀ICP备2022010826号 )|天天打卡

GMT+8, 2024-11-15 12:09 , Processed in 0.090874 second(s), 27 queries .

Powered by i云网络 Licensed

© 2023-2028 正版授权

快速回复 返回顶部 返回列表