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