共计 458 个字符,预计需要花费 2 分钟才能阅读完成。
要获取 URL 参数,你可以使用 PHP 中的 $_GET
或$_REQUEST
全局变量。例如,如果你的 URL 是 http://example.com/index.php?page=about
,你可以使用以下代码来获取page
参数的值:
$page = $_GET['page'];
echo $page; // 输出为 "about"
如果你想重写 URL 并隐藏参数,你可以使用 .htaccess
文件来实现。例如,你可以将 http://example.com/index.php?page=about
转换为 http://example.com/about
。在.htaccess
文件中添加以下代码:
RewriteEngine On
RewriteRule ^([^/]*)$ /index.php?page=$1 [L]
这将把 http://example.com/about
重写为http://example.com/index.php?page=about
。然后你可以使用上面的 PHP 代码来获取参数的值。
丸趣 TV 网 – 提供最优质的资源集合!
正文完