欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 通配符实现方法

程序员文章站 2022-05-27 12:42:33
...
  1. $a = 'http://bbs.it-home.org/forum/viewthread.php*';
  2. $b = str_replace('*', '===x===', $a);
  3. $c = preg_quote($b);
  4. $d = str_replace('/', '\/', $c);
  5. $e = '/' . str_replace('===x===', '.+', $d) . '/is';
  6. preg_match($e, 'http://bbs.it-home.org/forum/viewthread.php?tid=12345', $m);
  7. print_r($m);
  8. ?>
复制代码