使用 SimpleXML 的 PHP if else 语句

发布于 2024-11-17 18:01:15 字数 771 浏览 1 评论 0原文

我正在使用 SimpleXML 生成我们的事件页面。有些事件仅在一天发生,而另一些事件则重复发生。我一直在尝试编写 if-else 语句。

如果有重复事件,repeatRuleID 将等于 1。如果没有,它将等于 0(并且该事件仅发生一次)。

我的问题是,如何编辑下面的代码,例如“到 7 月 15 日”或“8 月 1 日”(显然使用 XML 日期)。

这是我的 页面,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 技术交流群。

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

发布评论

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

评论(1

半仙 2024-11-24 18:01:15

看起来 $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

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