如何使用PHP获取用户的屏幕分辨率
Possible Duplicate:
Getting the screen resolution using PHP
well the question is self explanatory
where i want to reach is
$width = ; //user screen width in here
F1! F1!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要 JavaScript,而不是 PHP。
然后,您可以通过 Ajax(使用
XmlHttpRequest
)将其发送到服务器。另请参阅 MDC
window.screen
文档。You need JavaScript, not PHP.
You can then send it to the server via Ajax (with an
XmlHttpRequest
).See also the MDC
window.screen
docs.你不能,不能在 php 中。 PHP 严格来说是服务器端的。
You can't, not in php. PHP is strictly server-side.
你无法在服务器端获取它,你必须使用带有innerWidth的javascript在客户端获取它。如果需要,您可以使用 AJAX 将其传递到服务器端。
you can't get it server-side, you have to get it client-side with javascript with innerWidth. you can pass it to the server-side with AJAX if you need to.
您可以使用 JavaScript。获取用户屏幕,发送到服务器,通过php获取。
You can use JavaScript. Get the user's screen, send it to the server and get it by php.