使用 SimpleXML 的 PHP if else 语句
我正在使用 SimpleXML 生成我们的事件页面。有些事件仅在一天发生,而另一些事件则重复发生。我一直在尝试编写 if-else 语句。
如果有重复事件,repeatRuleID
将等于 1。如果没有,它将等于 0(并且该事件仅发生一次)。
我的问题是,如何编辑下面的代码,例如“到 7 月 15 日”或“8 月 1 日”(显然使用 XML 日期)。
<h3><?= $event->title ?></h3>
<p><strong>
<? if ($event->repeatRuleID=1): ?>
through <?= $event->repeatUntilDate ?>
<? else: ?>
<?= $event->beginTime ?>
<? endif; ?>
</strong></p>
<p><?= $event->locationText ?></p>
I'm generating our Events pages using SimpleXML. Some of the Events take place only on one day while others occur repeatedly. I'm stuck trying to write an if-else statement.
If there's a repeating event, repeatRuleID
will equal 1. If not, it will equal 0 (and the event takes place only once).
My question is, how can I edit the code below to say, for example, "through July 15" OR "on August 1" (obviously using the XML dates).
Here is my page, XML (single and repeating events) and code:
<h3><?= $event->title ?></h3>
<p><strong>
<? if ($event->repeatRuleID=1): ?>
through <?= $event->repeatUntilDate ?>
<? else: ?>
<?= $event->beginTime ?>
<? endif; ?>
</strong></p>
<p><?= $event->locationText ?></p>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来
$event->repeatRuleID=1
应该包含 2 个=
就像$event->repeatRuleID==1
一样,因为您分配了一个值始终评估为 true,您不要使用比较运算符来检查该值的Looks like
$event->repeatRuleID=1
should contain 2=
like$event->repeatRuleID==1
, as your assigning a value which always evaluates to true, you not to use the comparison operator to check the value's