01function cutstr_html($string,$length=0,$ellipsis='…'){
02$string=strip_tags($string)
03$string=preg_replace('/\n/is','',$string)
04$string=preg_replace('/ | /is','',$string)
05$string=preg_replace('/ /is','',$string)
06preg_match_all("/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/",$string,$string)
07if(is_array($string)&&!empty($string[0])){
08if(is_numeric($length)&&$length){
09$string=join('',array_slice($string[0],0,$length)).$ellipsis
10}else{
11$string=implode('',$string[0])
12}
13}else{
14$string=''
15}
16return $string
17}
php 去除html标签 js 和 css样式
01function clearHtml($content){
02$content=preg_replace("/<a[^>]*>/i","",$content)
03$content=preg_replace("/<\/a>/i","",$content)
04$content=preg_replace("/<div[^>]*>/i","",$content)
05$content=preg_replace("/<\/div>/i","",$content)
06$content=preg_replace("/<!--[^>]*-->/i","",$content)//注释内容
07$content=preg_replace("/style=.+?['|\"]/i",'',$content)//去除样式
08$content=preg_replace("/class=.+?['|\"]/i",'',$content)//去除样式
09$content=preg_replace("/id=.+?['|\"]/i",'',$content)//去除样式
10$content=preg_replace("/lang=.+?['|\"]/i",'',$content)//去除样式
11$content=preg_replace("/width=.+?['|\"]/i",'',$content)//去除样式
12$content=preg_replace("/height=.+?['|\"]/i",'',$content)//去除样式
13$content=preg_replace("/border=.+?['|\"]/i",'',$content)//去除样式
14$content=preg_replace("/face=.+?['|\"]/i",'',$content)//去除样式
15$content=preg_replace("/face=.+?['|\"]/",'',$content)//去除样式 只允许小写 正则匹配没有带 i 参数
16return $content
17}
不需要php函数使用html的<pre>文章内容</pre>插件,即可把原文章按原格式输出。
如果一定要转换的话,使用preg_match("^\s+&","&nbsp","文章内容")
上面的&替换成&,记得。
可以分为两种情况:
1、空格是一个字符串,前后使用引号(但双均可),然后用echo就可以输出,例如下面的语句输出两个空格。
2、一般情况下网页会过滤多余的空格,解决方法有两种,一是使用中文的全角空格,二是使用标准的特殊符号&nbsp,下面的两个语句都分别是例子。
拓展资料1、PHP(外文名:PHP: Hypertext Preprocessor,中文名:“超文本预处理器”)是一种通用开源脚本语言。语法吸收了C语言、Java和Perl的特点,利于学习,使用广泛,主要适用于Web开发领域。PHP 独特的语法混合了C、Java、Perl以及PHP自创的语法。
2、它可以比CGI或者Perl更快速地执行动态网页。用PHP做出的动态页面与其他的编程语言相比,PHP是将程序嵌入到HTML(标准通用标记语言下的一个应用)文档中去执行,执行效率比完全生成HTML标记的CGI要高许多;PHP还可以执行编译后代码,编译可以达到加密和优化代码运行,使代码运行更快。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)