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.
目前我正在访问我的编辑脚本,如下所示:
http://example.com/editStuff.php?id=1234 $id = $_REQUEST["id"]; echo($id); //write: 1234
我想访问这样的脚本:
http://example.com/editStuff.php?1234
我想在 上拆分 URL ?,但您可能知道更简单的方法。 你知道实现这一点的方法吗?
?
您可以简单地使用$_SERVER['QUERY_STRING']如下:
$_SERVER['QUERY_STRING']
$id = $_SERVER['QUERY_STRING']; echo $id;
从文档:
访问页面的查询字符串(如果有)。