Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 URL 路径示例:
1. /1/another.part?param1=1¶m2=2 2. /1000/another.part2?param1=1¶m2=2
如何使用 php 获得 1 或 1000(/ 和 / 之间的数字)?
谢谢。
你可以用这个,
var number=document.location.href.split('?')[1]
试试这个 explode功能
explode
$str = explode('/','/1/another.part?param1=1¶m2=2'); echo $str[1];
您可以使用正则表达式preq_match
PHP
preq_match("\/[0-9]*\/", $string);