PHP IF 条件的更短方法

发布于 2024-11-19 04:42:52 字数 224 浏览 2 评论 0原文

在 PHP 中是否有更短的方法来编写以下 IF 条件? 谢谢

if ( ($ext != 'jpg') OR ($ext != 'png') OR ($ext !='jpeg') OR ($ext != 'gif') )
            {
                $error = 'Image type not allowed.';

            }

Is there a shorter way to write the following IF condition in PHP?
Thanks

if ( ($ext != 'jpg') OR ($ext != 'png') OR ($ext !='jpeg') OR ($ext != 'gif') )
            {
                $error = 'Image type not allowed.';

            }

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

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

发布评论

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

评论(4

莫相离 2024-11-26 04:42:52

例如

if (!in_array($ext, array('jpg', 'png', 'jpeg', 'gif')){
  $error = 'Image type not allowed.';
}

e.g.

if (!in_array($ext, array('jpg', 'png', 'jpeg', 'gif')){
  $error = 'Image type not allowed.';
}
感性 2024-11-26 04:42:52
if (!in_array($ext, array('jpg','png','jpeg','gif')) )
    $error = 'Image type not allowed.';

或者

if(!preg_match('/^(jpe?g|png|gif)$/',$ext))
    $error = 'Image type not allowed.';
if (!in_array($ext, array('jpg','png','jpeg','gif')) )
    $error = 'Image type not allowed.';

or

if(!preg_match('/^(jpe?g|png|gif)$/',$ext))
    $error = 'Image type not allowed.';
匿名。 2024-11-26 04:42:52

if (!in_array($ext, array('jpg','jpeg','gif))
{
$error = '图像类型不允许。';
}

if (!in_array($ext, array('jpg','jpeg','gif))
{
$error = 'Image type not allowed.';
}

月亮邮递员 2024-11-26 04:42:52

上面的所有答案都是正确的,但出于不同的目的:

$error = (!in_array($ext, array('jpg','png','jpeg','gif'))) ? 'Image type not allowed.' : '';

All answers above are correct, but for the sake of something different:

$error = (!in_array($ext, array('jpg','png','jpeg','gif'))) ? 'Image type not allowed.' : '';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文