-
php ereg_replace函数
- $string = "this is a test";
- echo str_replace(" is", " was", $string);
- echo ereg_replace("( )is", "1was", $string); //其中1就是第一个括号中空格
- echo ereg_replace("(( )is)", "2was", $string); //其中2就是第二个括号的空格,上面三行也就是把" is"替换为" was";都有空格的。
ereg_replace ( string pattern, string replacement, string string)
也就是说如果pattern中带有()得字符串(如;括号中有空格),那你的replacement就可以使用如1的字符串,那这个1就给可以用你第1个括号中字符串来替换,如果是2那就用第2个括号中的字符串替换.
括号从左到右,以左括号为准,下面那个是去掉url中的如&page=1符串比对解析并取代.
语法: string ereg_replace(string pattern, string replacement, string string);
返回值:字符串
函数种类:资料处理
内容说明:本函数以 pattern 的规则来解析比对字符串 string,欲取而代之的字符串为参数 replacement,返回值为字符串类型,为取代后的字符串结果.
使用范例,ken@freebsdrocks.com 在 16-mar-1999 提出的例子,代码如下:
- <?php
- $text = 'this is a {1} day, not {2} and {3}.';
- $daytype = array( 1 => 'fine',
- 2 => 'overcast',
- 3 => 'rainy' );
- while (ereg ('{([0-9]+)}', $text, $regs)) {
- $found = $regs[1];
- $text = ereg_replace("{".$found."}", $daytype[$found], $text);
- }
- echo "$textn";
- // this is a fine day, not overcast and rainy.
- ?>
ken@freebsdrocks.com 并同时提出具有相同功能的perl 程序范例如下:
- $text = 'this is a {1} day, not {2} and {3}.';
- %daytype = ( 1 => 'fine',
- 2 => 'overcast',
- 3 => 'rainy' );
- $text =~ s/{(d+)}/$daytype{$1}/eg;
- print "$textn";
出处:http://www.phpfensi.com/php/20140805/4202.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.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式