问题似乎很简单,我需要一个正则表达式来匹配类似这样的短语:
“/ product / 12 / show”
我知道它可能喜欢
“/产物/ \ d + /显示”
但是当应用于php函数preg_match时,它失败了,任何想法
答案 0 :(得分:2)
$your_string_to_match = "/product/12/show";
if (preg_match('#^/product/\d+/show#', $your_string_to_match)) {
// matched
}