PHP 如果存在多个变量
因此,如果存在多个变量,我在让 PHP 运行命令时遇到一些问题。我制作了一个简单的版本,以便人们可以更轻松地了解我正在尝试修复的内容。预先感谢任何可以提供帮助的人:)
<?php
if ((isset($finalusername)) && if (isset($finalpassword)) && if (isset($finalemail)))
echo "This will save.";
?>
So i'm having a bit of a problem with having my PHP run a command if multiple variables exist. I made a simple version for people to see what i'm trying to fix easier. Thanks in advance to anyone who can help :)
<?php
if ((isset($finalusername)) && if (isset($finalpassword)) && if (isset($finalemail)))
echo "This will save.";
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
另请参阅PHP 的
isset
和empty
权威指南。Also see The Definitive Guide to PHP's
isset
andempty
.您不需要在其中放置多个
if
。事实上,我什至会这样做......
You don't need to place the multiple
if
in there.In fact, I'd even do it like so...
所以你可以这样做:
So you can do this way:
因此,对于某些变量来说,这可能是一个很好的解决方案:
So this might be a good solution for much more than some variables:
尝试用这个:
Try with this: