很抱歉,使用 PHP 无法做到这一点。您唯一的选择是在某处使用 JavaScript。
但是,您可以使用另一种技术实现我认为您正在尝试做的事情 - PHP 会话和请求 URI。
这涉及将用户访问的 URL 存储到一个变量(或者您可以使用 MySQL)中,该变量可以在当前会话中网站的任何位置引用。
这是一个(未经测试的)示例:
<?php
session_start();
// Retrieve/create the current list
if( isset($_SESSION['history']) ) {
$history = $_SESSION['history'];
} else {
$history = new array();
}
// Add the current URL to the history array
array_push($history, $_SERVER['REQUEST_URI']);
// Do anything else you want to here
// Store the array again
$_SESSION['history'] = $history;
?>