码迷,mamicode.com
首页 > Web开发 > 详细

php回调函数callback函数实例

时间:2014-06-08 22:14:49      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   a   ext   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
// 将文本中的年份增加一年.
$text = "April fools day is 04/01/2002\n";
$text.= "Last christmas was 12/24/2001\n";
// 回调函数
function next_year($matches)
{
  // 通常: $matches[0]是完成的匹配
  // $matches[1]是第一个捕获子组的匹配
  // 以此类推
  return $matches[1].($matches[2]+1);
}
echo preg_replace_callback(
            "|(\d{2}/\d{2}/)(\d{4})|",
            "next_year",
            $text);
 
?>

  输出

1
2
April fools day is 04/01/2003
Last christmas was 12/24/2002

  

php回调函数callback函数实例,布布扣,bubuko.com

php回调函数callback函数实例

标签:c   class   blog   code   a   ext   

原文地址:http://www.cnblogs.com/majin/p/3775523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!