如果窗口大小是300x500然后打开页面,否则重定向PHP代码

时间:2013-08-01 15:52:16

标签: php iframe window size

我需要一些具有已定义窗口大小的PHP代码,如果大小为true则运行页面如果不重定向到另一个页面。我将使用iframe管理窗口大小。有可能与PHP?如果不存在另一种方式。

2 个答案:

答案 0 :(得分:0)

PHP无法知道窗口大小。

这是JavaScript的任务。

Example of getting window size with JS

答案 1 :(得分:0)

这是一个小javacript检查宽度和高度然后设置文档位置,如果它不是你指定的,但它是从PHP回应。你可以使用maxheight,max width和url变量。

<?php 
 $jssnippet = "<script type='text/javascript'>var width = window.innerWidth; 
 var height= window.innerHeight; 
 var maxheight=480; 
 var maxwidth=360;
 var redirecturl='http://www.xl21.org';
 if((width>maxwidth) && (height>maxheight)){document.location=url; }</script>"; 

echo $jssnippet;
?>