php中常用字符串处理代码片段整理


Posted in PHP onNovember 07, 2011

移除 HTML 标签

$text = strip_tags($input, "");

上面的函数主要是使用了strip_tags,具体的使用说明参考。

返回 $start 和 $end 之间的文本

function GetBetween($content,$start,$end){ 
$r = explode($start, $content); 
if (isset($r[1])){ 
$r = explode($end, $r[1]); 
return $r[0]; 
} 
return ''; 
}

将url转换成链接

$url = "Jean-Baptiste Jung (https://3water.com)"; 
$url = preg_replace("#http://([A-z0-9./-]+)#", '<a href="http://www.catswhocode.com/blog/$1" style="font-size: 12px; vertical-align: baseline; background-color: transparent; margin: 0px; padding: 0px; color: #3777af; text-decoration: none; font-weight: bold">$0</a>', $url);

切分字符串为140个字符

function split_to_chunks($to,$text){ 
$total_length = (140 - strlen($to)); 
$text_arr = explode(" ",$text); 
$i=0; 
$message[0]=""; 
foreach ($text_arr as $word){ 
if ( strlen($message[$i] . $word . ' ') <= $total_length ){ 
if ($text_arr[count($text_arr)-1] == $word){ 
$message[$i] .= $word; 
} else { 
$message[$i] .= $word . ' '; 
} 
} else { 
$i++; 
if ($text_arr[count($text_arr)-1] == $word){ 
$message[$i] = $word; 
} else { 
$message[$i] = $word . ' '; 
} 
} 
} 
return $message; 
}

删除字符串中的URL

$string = preg_replace('/\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|$!:,.;]*[A-Z0-9+&@#\/%=~_|$]/i', '', $string);

将字符串转成SEO友好的字符串

function slug($str){ 
$str = strtolower(trim($str)); 
$str = preg_replace('/[^a-z0-9-]/', '-', $str); 
$str = preg_replace('/-+/', "-", $str); 
return $str; 
}

解析 CSV 文件

$fh = fopen("contacts.csv", "r"); 
while($line = fgetcsv($fh, 1000, ",")) { 
echo "Contact: {$line[1]}"; 
}

字符串搜索

function contains($str, $content, $ignorecase=true){ 
if ($ignorecase){ 
$str = strtolower($str); 
$content = strtolower($content); 
} 
return strpos($content,$str) ? true : false; 
}

检查字符串是否以某个串开始

function String_Begins_With($needle, $haystack { 
return (substr($haystack, 0, strlen($needle))==$needle); 
}

从字符串中提取email地址

function extract_emails($str){ 
// This regular expression extracts all emails from a string: 
$regexp = '/([a-z0-9_\.\-])+\@(([a-z0-9\-])+\.)+([a-z0-9]{2,4})+/i'; 
preg_match_all($regexp, $str, $m); return isset($m[0]) ? $m[0] : array(); 
} 
$test_string = 'This is a test string... 
test1@example.org 
Test different formats: 
test2@example.org; 
<a href="test3@example.org">foobar</a> 
<test4@example.org> 
strange formats: 
test5@example.org 
test6[at]example.org 
test7@example.net.org.com 
test8@ example.org 
test9@!foo!.org 
foobar 
'; 
print_r(extract_emails($test_string));
PHP 相关文章推荐
php 获取一个月第一天与最后一天的代码
May 16 PHP
PHP XML error parsing SOAP payload on line 1
Jun 17 PHP
php实现的支持断点续传的文件下载类
Sep 23 PHP
PHP队列用法实例
Nov 05 PHP
制作安全性高的PHP网站的几个实用要点
Dec 30 PHP
PHP加密技术的简单实现
Sep 04 PHP
php页面跳转session cookie丢失导致不能登录等问题的解决方法
Dec 12 PHP
Laravel下生成验证码的类
Nov 15 PHP
PHP函数积累总结
Mar 19 PHP
修改Laravel自带的认证系统的User类的命名空间的步骤
Oct 15 PHP
laravel5.6实现数值转换
Oct 23 PHP
解决PHPstudy Apache无法启动的问题【亲测有效】
Oct 30 PHP
php smarty截取中文字符乱码问题?gb2312/utf-8
Nov 07 #PHP
PHP面向对象概念
Nov 06 #PHP
php 记录进行累加并显示总时长为秒的结果
Nov 04 #PHP
php 按指定元素值去除数组元素的实现方法
Nov 04 #PHP
php数组函数序列之array_search()- 按元素值返回键名
Nov 04 #PHP
php 伪造本地文件包含漏洞的代码
Nov 03 #PHP
有关php运算符的知识大全
Nov 03 #PHP
You might like
PHP中限制IP段访问、禁止IP提交表单的代码
2011/04/23 PHP
PHP分多步骤填写发布信息的简单方法实例代码
2012/09/23 PHP
php防注入及开发安全详细解析
2013/08/09 PHP
php将url地址转化为完整的a标签链接代码(php为url地址添加a标签)
2014/01/17 PHP
php如何计算两坐标点之间的距离
2018/12/29 PHP
laravel 多图上传及图片的存储例子
2019/10/14 PHP
js技巧--转义符&quot;\&quot;的妙用
2007/01/09 Javascript
jquery 1.3.2 IE8中的一点点的小问题解决方法
2009/07/10 Javascript
写出高效jquery代码的19条指南
2014/03/19 Javascript
JS回调函数的应用简单实例
2014/09/17 Javascript
javascript中 try catch用法
2015/08/16 Javascript
JS实现倒计时(天数、时、分、秒)
2016/11/16 Javascript
两种简单的跨域方法(jsonp、php)
2017/01/02 Javascript
vue数据双向绑定的注意点
2017/06/23 Javascript
vue项目实现记住密码到cookie功能示例(附源码)
2018/01/31 Javascript
vue异步加载高德地图的实现
2018/06/19 Javascript
JavaScript面向对象中接口实现方法详解
2019/07/24 Javascript
jQuery实现聊天对话框
2020/02/08 jQuery
vue+canvas实现移动端手写签名
2020/05/21 Javascript
详解Vite的新体验
2021/02/22 Javascript
Python生成不重复随机值的方法
2015/05/11 Python
自己编程中遇到的Python错误和解决方法汇总整理
2015/06/03 Python
使用Python写个小监控
2016/01/27 Python
实例解析Python的Twisted框架中Deferred对象的用法
2016/05/25 Python
Python网络爬虫神器PyQuery的基本使用教程
2018/02/03 Python
python制作mysql数据迁移脚本
2019/01/01 Python
python中将两组数据放在一起按照某一固定顺序shuffle的实例
2019/07/15 Python
python命令 -u参数用法解析
2019/10/24 Python
wxPython实现带颜色的进度条
2019/11/19 Python
python深copy和浅copy区别对比解析
2019/12/26 Python
经典的班主任推荐信
2013/10/28 职场文书
平面设计求职信
2014/03/10 职场文书
如何用python插入独创性声明
2021/03/31 Python
ORACLE数据库对long类型字段进行模糊匹配的解决思路
2021/04/07 Oracle
一道JS算法面试题——冒泡、选择排序
2021/04/21 Javascript
nginx内存池源码解析
2021/11/20 Servers