php正则preg_replace_callback函数用法实例_php技巧
程序员文章站
2022-04-17 18:38:09
...
本文实例讲述了php正则preg_replace_callback函数的用法。分享给大家供大家参考。具体实现方法如下:
php正则表达式功能强大,本范例演示了preg_replace_callback函数的用法
// Define a dummy text, for testing... $Text = "Title: Hello world!\n"; $Text .= "Author: Jonas\n"; $Text .= "This is a example message!\n\n"; $Text .= "Title: Entry 2\n"; $Text .= "Author: Sonja\n"; $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 // --> ([^\n\r]+) $Value = $Match[2]; // --> "Hello world!" // Add some bold () tags to around the key to return '' . $Key . ': ' . $Value; } // The regular expression will extract and pass all "key: value" pairs to // the "RewriteText" function that is definied above $NewText = preg_replace_callback('/[\r\n]([a-z0-9]+): ([^\n\r]+)/i', "RewriteText", $Text); // Print the new modified text print $NewText;
希望本文所述对大家的php程序设计有所帮助。
上一篇: Windows安装两个mysql数据库步骤_MySQL
下一篇: python语言有哪两种编程方式
推荐阅读
-
PHP、Python 相关正则函数一点实例_PHP教程
-
PHP curl_setopt()函数实例代码与参数分析_php技巧
-
php文件压缩之PHPZip类用法实例_php技巧
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析_php实例
-
php获得网站访问统计信息类Compete API用法实例_php技巧
-
php构造函数实例讲解_php技巧
-
php中ob_get_length缓冲函数用法实例详解
-
php字符串替换函数substr_replace()用法实例_PHP教程
-
php内嵌函数用法实例代码
-
PHP 将数组打乱 shuffle函数的用法及简单实例