如何获得 url 部分 php?

How to get url part php?

我正在想办法编辑我的博客 posts。我有一个页面显示我当前的博客 post。本例中的 73 是 post 的 ID。

如何根据 url 将这个 73 值存储到 PHP 中的变量中?

例如,这是我的 url: http://example.com/?post=73

如何检索 73 并将其存储到 $ID = "73" 等变量中?

在这种特殊情况下(您有一个 ?var=),您需要使用 GET 超全局 https://secure.php.net/manual/en/reserved.variables.get.php

所以在你的情况下,就像@JayBlanchard 说的那样,使用 $_GET ['post'] 来检索 'post' 值。