PHP 条件语法帮助 If/Else?
我需要正确的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
mysql 解决方案:
在 PHP 中,您只需 echo itemCategory 即可。无附加条件。如果它是 NULL id 数据库,则在 PHP 中它将是 itemAuthor。
php解决方案:
NULL作为空字符串返回。它在 if 表达式中转换为 php false。
The mysql solution:
In PHP You just echo itemCategory. No additional conditions. If it was NULL id database, it will be itemAuthor in PHP.
The php solution:
The NULL is returned as empty string. It is converted to php false in if expressions.