PHP - 如果 PHP 值为空,则不显示任何代码
我正在使用这样的查询从数据库中提取信息:
<p><strong>Show Description:</strong><br/><?php echo cimy_uef_sanitize_content(get_cimyFieldValue(1, 'show-description')); ?></p>
有没有办法将标题(显示说明)放入 PHP 字符串中,然后,如果 PHP 字段值为空,则不显示任何内容?
我认为这会涉及 PHP if/else 语句,但我不确定代码应该是什么样子。
谢谢 扎克
I am using queries like this to pull in information from a database:
<p><strong>Show Description:</strong><br/><?php echo cimy_uef_sanitize_content(get_cimyFieldValue(1, 'show-description')); ?></p>
Is there any way to put the title (Show Description) into the PHP string and then, if the PHP field value is empty, to not show anything?
I think it would involve a PHP if/else statement, but I am not sure what the code should look like.
Thanks
Zach
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果没有看到这些函数的代码,很难,但猜测:
应该可以工作
It is hard without seeing the code for those functions, but at a guess:
Should work
您可以使用 PHP 的 empty() 函数来实现此目的 -
根据文档,如果
$data
变量是 -You can use PHP's empty() function for this purpose -
According to the documentation, this function will return
true
if the$data
variable is either -如果我理解正确,你需要这样的东西:
未编译,因此代码中可能存在错误,但你明白了......
If I understood You correctly, You need something like this:
Not compiled, so there can be errors in code, but you get the point...