假设我正在阅读网页而URL是“http://example.com/term/11,23”。如何使用PHP仅获取URL中的整数?
答案 0 :(得分:1)
<?php
$url = 'http://example.com/term/11,23';
preg_match_all('#(\d+)#', $url, $matches);
print_r($matches); //outputs array([0]=>11,[1]=>23)
?>
答案 1 :(得分:1)
你可以这样做:
$str = 'http://example.com/term/11,23';
echo end(explode('/', $str));
<强>结果:强>
11,23