在PHP中,可以使用$_SERVER['PATH_INFO']
來獲取URL中的參數。PathInfo是一個URL中用于識別動態頁面的一部分,通常包含在網址的末尾。例如,如果URL是http://example.com/index.php/user/profile/123
,那么PathInfo部分就是/user/profile/123
。
以下是一個簡單的示例代碼,演示如何使用PathInfo獲取URL參數:
<?php
// 獲取PathInfo
$pathInfo = $_SERVER['PATH_INFO'];
// 將PathInfo以'/'分隔成數組
$parts = explode('/', $pathInfo);
// 獲取URL參數
$user = $parts[1]; // 獲取'user'
$profile = $parts[2]; // 獲取'profile'
$id = $parts[3]; // 獲取'123'
// 輸出URL參數
echo "User: $user <br>";
echo "Profile: $profile <br>";
echo "ID: $id <br>";
?>
當訪問http://example.com/index.php/user/profile/123
時,上面的代碼將輸出以下結果:
User: user
Profile: profile
ID: 123