加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

php 正则函数preg_replace_callback的入门实例

发布时间:2020-05-25 04:47:25 所属栏目:PHP 来源:互联网
导读:php 正则函数preg_replace_callback的入门实例

php正则表达式功能强大,本范例演示了preg_replace_callback函数的用法,php正则preg_replace_callback函数的用法,感兴趣的小伙伴,下面一起跟随脚本之家 jb51.cc的小编来看看吧。
经测试代码如下:


/**
 * preg_replace_callback函数的用法
 *
 * @param 
 * @arrange (512.笔记) jb51.cc
 **/
$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三.零.网 jb51.cc
    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;


/***   来自脚本之家 jb51.cc(jb51.cc)   ***/

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读