0

この preg_match から int を取得する方法を知っている人はいますか? URIだけが表示されます。

$uri = "/user/view/2";
$pattern = "/user/view/[0-9]+";

if(preg_match('#^' . $pattern . '$#', $uri, $matched)) {
    print_r($matched);
}
else {
    echo "No match!";
}
4

2 に答える 2