如何从PHP中的URL获取特定数字

时间:2017-05-29 10:48:06

标签: php regex

我有以下网址:http://example.com/category/post-is-783476?src=mainPage。使用模式如何从网址获取数字(78346)?

1 个答案:

答案 0 :(得分:0)

这样的东西
<?php
$input_line = "http://example.com/category/post-is-783476?src=mainPage";
preg_match("/([0-9]+)\/?/", $input_line, $output_array);
echo $output_array[1];
?>

输出:783476