php的字符串用法小结
2015-01-24信息快讯网
php的字符串用法小结,刚开始接触php字符串的朋友可以参考下。
1 求长度,最基本的$text = "sunny day";
$count = strlen($text); // $count = 9
2 字符串截取
截取前多少个字符
$article = "BREAKING NEWS: In ultimate irony, man bites dog."; $summary = substr_replace($article, "...", 40);
3 算单词数
$article = "BREAKING NEWS: In ultimate irony, man bites dog."; $wordCount = str_word_count($article);
// $wordCount = 8
4 将字符串变成HTML的连接
$url = "W.J. Gilmore, LLC (http://www.jb51.net)";
$url = preg_replace("/http://([A-z0-9./-]+)/", "$0", $url);
5 去除字符中的HTML字符串
$text = strip_tags($input, "
");
6 nl2br:
$comment = nl2br($comment);
变成带HTML格式
7 Wordwrap
限制每行字数
$speech = "Four score and seven years ago our fathers brought forth, upon this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.";
echo wordwrap($speech, 30);
输出:
Four score and seven years ago our fathers brought forth, upon this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.
PHP提取字符串中的图片地址[正则表达式]
PHP学习散记_编码(json_encode 中文不显示)
PHP字符串函数系列之nl2br(),在字符串中的每个新行 (\n) 之前插入 HTML 换行符br
php数组函数序列之array_intersect() 返回两个或多个数组的交集数组
php中一个完整表单处理实现代码
php array_filter除去数组中的空字符元素
php 转换字符串编码 iconv与mb_convert_encoding的区别说明
PHP中文处理 中文字符串截取(mb_substr)和获取中文字符串字数
PHP容易被忽略而出错陷阱 数字与字符串比较
php 上传文件类型判断函数(避免上传漏洞 )
php文章内容分页并生成相应的htm静态页面代码
php获取当前网址url并替换参数或网址的方法
phpmyadmin里面导入sql语句格式的大量数据的方法
php 智能404跳转代码,适合换域名没改变目录的网站
php中static静态变量的使用方法详解
PHP stristr() 函数(不区分大小写的字符串查找)
php strstr查找字符串中是否包含某些字符的查找函数
php trim 去除空字符的定义与语法介绍
PHP 可阅读随机字符串代码
PHP 一个随机字符串生成代码
PHP similar_text 字符串的相似性比较函数