See on map -6ren">
gpt4 book ai didi

php - 如果数组包含任何数据

转载 作者:行者123 更新时间:2023-12-02 08:51:51 25 4
gpt4 key购买 nike

我这里有这些位,可以为我显示谷歌地图链接。我如何将其包装在某种 if 语句中,该语句将检查 $event['where'] 中是否有任何数据。我不希望在没有数据时显示链接。

<a title="See on Map" target="_blank" href="http://maps.google.com/maps?q=<?php echo $event['where']; ?>">See on map</a>

最佳答案

<?php if(!empty($event)){ ?> <a title="See on Map" target="_blank" href="http://maps.google.com/maps?q=<?php echo $event['where']; ?>">See on map</a> <?php } ?>

关于php - 如果数组包含任何数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7969785/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com