php ereg_replace函数
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-05 13:50:17 浏览: 评论:0
- $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";
Tags: php ereg_replace函数
- 上一篇:php字符串与中文字符拆分方法
- 下一篇:php curl用法
相关文章
- ·PHP校验ISBN码的函数(2013-11-11)
- ·PHP不缓存数据头(2013-11-11)
- ·PHP采集程序中常用的函数(2013-11-11)
- ·PHP多重判断删除文件函数(2013-11-11)
- ·php中文汉字截取函数(2013-11-12)
- ·如何用php创建与删除多级目录函数(2013-11-14)
- ·什么函数能够把文件从一个目录下转移到另外一个目录下?(2013-11-27)
- ·php_admin_value(php_admin_flag)和php_value(php_flag)(2013-11-27)
- ·使用PHP重新实现PHP脚本引擎内置函数(2013-11-27)
- ·计算一个程序的执行时间的函数(2013-11-27)
- ·php curl_init函数用法(2013-11-28)
- ·php md5 与md5_file区别详细说明(2013-11-28)
- ·php session_cache_limiter session_cache_expire等函数(2013-11-29)
- ·php var_dump简单测试(2013-11-29)
- ·php file_exists无效解决办法(2013-11-29)
- ·强大的php检查文件类型(2013-11-30)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)