在PHP中,可以使用$_SERVER['PATH_INFO']
来获取URL中的参数。PathInfo是一个URL中用于识别动态页面的一部分,通常包含在网址的末尾。例如,如果URL是http://example.com/index.php/user/profile/123
,那么PathInfo部分就是/user/profile/123
。
以下是一个简单的示例代码,演示如何使用PathInfo获取URL参数:
"; echo "Profile: $profile
"; echo "ID: $id
"; ?>
当访问http://example.com/index.php/user/profile/123
时,上面的代码将输出以下结果:
User: user Profile: profile ID: 123