一定有更好的方法(php,字符串)
如果用户给了我们名字,我想显示他们的名字,否则显示他们的电子邮件。 下面的代码可以运行,但我不喜欢它需要这么多行,我隐约记得可能用 OR 来做到这一点的某种方法? 我(基本上)有:
if ($firstname == "")
{
$name = $email;
}else{
$name = $firstname;
}
echo $name;
I want to display a user's firstname if they gave us one, otherwise their email.
The code below functions, but I don't like how it takes so many lines, I vaguely recall some way of maybe doing this with OR?
I have (essentially):
if ($firstname == "")
{
$name = $email;
}else{
$name = $firstname;
}
echo $name;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
较短的版本 (PHP 5)
The shorter version (PHP 5)
这是一种不太常见但有时有用的构造(作为
?:
语法的替代):This is a less common but sometimes useful construct (as alternative to the
?:
syntax):