我找到了一些获取浏览器窗口宽度和高度的jquery和ajax代码。我不知道jquery或ajax,但我很高兴让它工作,有点。下面的脚本与指向需要运行的下一个脚本的链接完美配合。两个$ _SESSION变量都设置正确且可用。当我通过标题重定向链接到score.php时,$ _SESSION变量显然没有设置,因为它们在score.php中为null。时间问题?
我真的不希望有一个用户必须点击才能继续的链接。 (这些脚本是需要用户“登录”的系统的一部分。)是否有一个简单的解决方案可以重定向到score.php,以便browserWidth和browserHeight值可用?我可以将它们作为$ _SESSION变量或作为参数访问(score.php?w = $ browserWidth& h = ...)。
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<?php
/*******************************************
/ code from http://holden.pro/test/test2.php
/******************************************/
if(!isset($_POST['width']) || !isset($_POST['height'])) {
echo '
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
var height = $(window).height();
var width = $(window).width();
$.ajax({
type: \'POST\',
url: \'get_window_size.php\',
data: {
"height": height,
"width": width
},
success: function (data) {
$("body").html(data);
},
});
});
</script>
';
}
$_SESSION['browserWidth'] = $_POST['width'];
$_SESSION['browserHeight'] = $_POST['height'];
echo '<a href="score_image.php">Score Image</a>'; // THIS WORKS!
/* THIS DOES NOT WROK
$location = 'Location: score_image.php';
header("$location");
header("content-type: text/html; charset=utf-8");
*/
?>
</body>
</html>
答案 0 :(得分:1)
PHP Header - Manual &lt; - 阅读以便更好地理解。尝试下面的代码,它会将宽度和高度附加到URL。
<?php
$width = $_POST['width'];
$height = $_POST['height'];
$host = $_SERVER['HTTP_HOST'];
$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
$extra = 'score_image.php?h='.$height.'&w='.$width;
header('Location: http://'.$host.$uri.'/'.$extra);
exit;
?>