http://xxxx.us/a/6126/securitycheckzpsfc10cc9.jpg#id=558554
我想在哈希后获取 URL 参数。
$hash = $_GET['hash'];
不工作
我想从地址栏中获取 URL。并获得哈希后的部分。
<?php
$url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$url1 = parse_url($url);
echo $url1['fragment'];
?>
这也行不通。