-
php中拆分和组合字符串函数介绍
在php中拆分字符串我们会用到explode或者split函数,如果我们要组合字符串就可以使用implode或使用.号直接连接了
字符组合,代码如下:
- for($k=2;$k<5;$k++)
- {
- if(!emptyempty(${'pfile'.$k}))
- { echo ${'pfile'.$k};}//那么相当于输出的是$pfile2,$pfile3.......}
- }
implode() 函数把数组元素组合为一个字符串。
注释:implode() 可以接收两种参数顺序,但是由于历史原因,explode() 是不行的,你必须保证 separator 参数在 string 参数之前才行。
例子代码如下:
- <?php
- $arr = array('Hello','World!','Beautiful','Day!');
- echo implode(" ",$arr);
- ?>
- //输出:Hello World! Beautiful Day!
explode() 函数把字符串分割为数组。
注释:参数 limit 是在 PHP 4.0.1 中加入的,由于历史原因,虽然 implode() 可以接收两种参数顺序,但是 explode() 不行,你必须保证 separator参数在 string 参数之前才行。
在本例中,我们将把字符串分割为数组,代码如下:
- <?php
- $str = "Hello world. It's a beautiful day.";
- print_r (explode(" ",$str));
- ?>
- //输出:
- Array
- (
- [0] => Hello
- [1] => world.
- [2] => It's
- [3] => a
- [4] => beautiful
- [5] => day.
- )
一个不错的php分割合并两个字符串的函数,代码如下:
- /**
- * Merges two strings in a way that a pattern like ABABAB will be
- * the result.
- *
- * @param string $str1 String A
- * @param string $str2 String B
- * @return string Merged string
- */
- function MergeBetween($str1, $str2){
- // Split both strings
- $str1 = str_split($str1, 1);
- $str2 = str_split($str2, 1);
- // Swap variables if string 1 is larger than string 2
- if (count($str1) >= count($str2))
- list($str1, $str2) = array($str2, $str1);
- // Append the shorter string to the longer string
- for($x=0; $x < count($str1); $x++)
- $str2[$x] .= $str1[$x];
- return implode('', $str2);
- }
- //范例演示:
- print MergeBetween('abcdef', '__') . "n";
- print MergeBetween('__', 'abcdef') . "n";
- print MergeBetween('bb', 'aa') . "n";
- print MergeBetween('aa', 'bb') . "n";
- print MergeBetween('a', 'b') . "n";
- /*
- Output:
- a_b_cdef
- a_b_cdef
- baba
- abab
- ab
- */
出处:http://www.phpfensi.com/php/20140117/1429.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式