手机
当前位置:查字典教程网 >编程开发 >php教程 >php正则preg_replace_callback函数用法实例
php正则preg_replace_callback函数用法实例
摘要:本文实例讲述了php正则preg_replace_callback函数的用法。分享给大家供大家参考。具体实现方法如下:php正则表达式功能强...

本文实例讲述了php正则preg_replace_callback函数的用法。分享给大家供大家参考。具体实现方法如下:

php正则表达式功能强大,本范例演示了preg_replace_callback函数的用法

// Define a dummy text, for testing... $Text = "Title: Hello world!n"; $Text .= "Author: Jonasn"; $Text .= "This is a example message!nn"; $Text .= "Title: Entry 2n"; $Text .= "Author: Sonjan"; $Text .= "Hello world, what's up!n"; // This function will replace specific matches // into a new form function RewriteText($Match){ // Entire matched section: // --> /.../ $EntireSection = $Match[0]; // --> "nTitle: Hello world!" // Key // --> ([a-z0-9]+) $Key = $Match[1]; // --> "Title" // Value // --> ([^nr]+) $Value = $Match[2]; // --> "Hello world!" // Add some bold (<b>) tags to around the key to return '<b>' . $Key . '</b>: ' . $Value; } // The regular expression will extract and pass all "key: value" pairs to // the "RewriteText" function that is definied above $NewText = preg_replace_callback('/[rn]([a-z0-9]+): ([^nr]+)/i', "RewriteText", $Text); // Print the new modified text print $NewText;

希望本文所述对大家的php程序设计有所帮助。

【php正则preg_replace_callback函数用法实例】相关文章:

php正则

PHP SplObjectStorage使用实例

php操作memcache缓存方法分享

php中smarty模板条件判断用法实例

PHP5.2下preg_replace函数的问题

PHP中is_dir()函数使用指南

php动态绑定变量的用法

php实现简单的语法高亮函数实例分析

php微信公众平台开发类实例

php通过exif_read_data函数获取图片的exif信息

精品推荐
分类导航