gpt4 book ai didi

php - 在 PHP 中将字符串转换为 int

转载 作者:行者123 更新时间:2023-11-30 07:26:41 32 4
gpt4 key购买 nike

以下是我将屏幕宽度分配给变量 $width 的代码片段。但是当我将它转换为整数并回显它时,返回了 0

$width = '<script> document.write(window.screen.width); </script>';
//if i echo $width it shows 1366 which is width of my screen
$height = '<script> document.write(window.screen.height); </script>';
echo "The height is = $height"."<br>The width is = ".$width;
$a = (int)($width);
echo $a;

我正在寻求指导以使此转换完美。

最佳答案

您当时实际上并没有获得屏幕尺寸。在客户端上运行。您将必须对服务器进行 ajax 调用以进行设置。

关于php - 在 PHP 中将字符串转换为 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11883954/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com