PHP实现通过正则表达式替换回调的内容标签

 2025-01-15  阅读 256  评论 8  点赞 275

摘要:本文实例讲述了php实现通过正则表达式替换回调的内容标签。分享给大家供大家参考。具体实现方法如下: function my_wp_plugin_tag_action($content,$tag,$function,$args = false) { // match all regular expressions preg_match_all($tag,$content,$matches); if (count($m

本文实例讲述了php实现通过正则表达式替换回调的内容标签。分享给大家供大家参考。具体实现方法如下:

PHP实现通过正则表达式替换回调的内容标签

function my_wp_plugin_tag_action($content,$tag,$function,$args = false) {
 // match all regular expressions
 preg_match_all($tag,$content,$matches);
 if (count($matches)>0) {
  // filter duplicates
  $matches = array_unique($matches);
  // loop through
  $tag_results = array();
  $found_tags = array();
  foreach ($matches as $idx => $match) {
   //build arg array
   $full_tag = array_shift($match);
   //call function, adding function output and full tag text to replacement array
   $tag_results[] = my_wp_plugin_buffer_func($function,$match);
   $found_tags[] = $full_tag;
  }
  // replace all tags with corresponding text
  $content = str_replace($found_tags,$tag_results,$content);
 }
 return $content;
}

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


标签:phpphp教程

评论列表:

  •   weihang666
     发布于 3天前回复该评论
  • 又学到了新知识!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0275秒, 内存占用1.93 MB, 访问数据库30次

冀ICP备19034377号