PHP 如果图像超过 1000px 使用 getimagesize()

发布于 2024-12-23 05:41:34 字数 485 浏览 1 评论 0原文

我正在使用 jQuery 验证 中使用的远程方法。

我指的是如下所示的 PHP 文件:

<?php

$title = mysql_real_escape_string($right_form_url);
$size = getimagesize($title);
$size[3] = $width;

if ($width > 1000) {
   $output = false;
} else {
   $output = true;
}
echo json_encode($output);

?>

无论我如何放置 $output 变量,它都不会返回任何内容。我已经尝试过其他我知道可用于验证的 PHP 文件,所以我认为这与我的 IF 语句有关,尽管我相当确定宽度已正确声明。

I'm using the remote method used in jQuery Validation.

I'm referring to a PHP file shown below:

<?php

$title = mysql_real_escape_string($right_form_url);
$size = getimagesize($title);
$size[3] = $width;

if ($width > 1000) {
   $output = false;
} else {
   $output = true;
}
echo json_encode($output);

?>

It never returns anything no matter how I put the $output variables. I've tried other PHP files that I know work in validation, so I think it has something to do with my IF statement, although I'm fairly certain the width is being declared correctly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离去的眼神 2024-12-30 05:41:34

您的代码无效。您正在设置 $size[3] = $width; ,它应该是 $width = $size[0];
两个错误:
1. 您原本将 $size[3] 设置为 $width,但应将 $width 设置为 $size[3]< /代码>
2. $size[3] 包含字符串值,与html图像标签一起使用(height="yyy" width="xxx"),$size[0] 包含数字宽度值

You code is invalid. You are setting $size[3] = $width; which sould be $width = $size[0];
Two mistakes:
1. You were setting $size[3] to $width, but should set $width to $size[3]
2. $size[3] containts string valu t use with html image tag(height="yyy" width="xxx"), $size[0] conatins numeric value of width

那片花海 2024-12-30 05:41:34

我想我知道你的问题,这里,json_enconde函数只支持UTF-8编码的数据,那么如果你的网站使用其他编码,该函数将返回NULL,所以试试这个:

<?php

$title = mysql_real_escape_string($right_form_url);
$size = getimagesize($title);
$size[3] = $width;

$output = true;    
if ($width > 1000) {
   $output = false;
}
echo json_encode(base64_encode($output));

?>

I think i know your problem, here, the json_enconde function only supports data with UTF-8 encoding, then if your site uses another encoding, the function will return NULL, so try this:

<?php

$title = mysql_real_escape_string($right_form_url);
$size = getimagesize($title);
$size[3] = $width;

$output = true;    
if ($width > 1000) {
   $output = false;
}
echo json_encode(base64_encode($output));

?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文