需要一种方法来检查通配符字符串是否与PHP中的给定字符串匹配

时间:2010-02-09 16:12:10

标签: php regex

我试图弄清楚如何创建一个函数,我可以传入两个字符串,一个带有通配符,另一个用于检查它是否与通配符字符串匹配。

$wildcard_string = '*.example.com/some/path/*';
$test_string = 'dev.example.com/some/path/art123.html';

function test_wildcard_match($wildcard_string, $test_string){

  //return true or false

}

2 个答案:

答案 0 :(得分:7)

答案 1 :(得分:2)