PHP 条件语法帮助 If/Else?

发布于 2024-12-21 06:25:42 字数 294 浏览 0 评论 0原文

我需要正确的 php 语法来处理我的网站产品页面面包屑链接的情况。我的所有项目均源自 MySQL 数据库。

库存项目按 itemCategory 或 itemAuthor 组织。并非所有项目都有与其关联的 itemCategory,因此在数据库中它们为 NULL。然而,所有项目都有一个 itemAuthor。

我基本上想说的是:

如果该项目具有 itemCategory 值,则回显该 itemCategory。如果 itemCategory 为 NULL,则回显 itemAuthor。

感谢您的任何帮助。

I need the proper php syntax to handle a situation with my website's breadcrum links for product pages. All of my items are derived from a MySQL database.

The inventory items are organized either by itemCategory or itemAuthor. Not all items have an itemCategory associated with them so in the database they are NULL. All items however, have an itemAuthor.

What I basically want to say is:

If the item has a value for itemCategory, echo the itemCategory. If itemCategory is NULL, echo itemAuthor instead.

Thanks for any help.

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

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

发布评论

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

评论(2

温柔嚣张 2024-12-28 06:25:42
if(empty($itemCategory)) {
  echo $itemAuthor;
} else {
  echo $itemCategory;
}
if(empty($itemCategory)) {
  echo $itemAuthor;
} else {
  echo $itemCategory;
}
暖阳 2024-12-28 06:25:42

mysql 解决方案:

SELECT ...
    IFNULL(`itemCategory`, `itemAuthor`) AS `itemCategory`
FROM ...

在 PHP 中,您只需 echo itemCategory 即可。无附加条件。如果它是 NULL id 数据库,则在 PHP 中它将是 itemAuthor。

php解决方案:

if ($r['itemCategory']):
    echo $r['itemCategory'];
else:
    echo $r['itemAuthor'];
endif;

NULL作为空字符串返回。它在 if 表达式中转换为 php false。

The mysql solution:

SELECT ...
    IFNULL(`itemCategory`, `itemAuthor`) AS `itemCategory`
FROM ...

In PHP You just echo itemCategory. No additional conditions. If it was NULL id database, it will be itemAuthor in PHP.

The php solution:

if ($r['itemCategory']):
    echo $r['itemCategory'];
else:
    echo $r['itemAuthor'];
endif;

The NULL is returned as empty string. It is converted to php false in if expressions.

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