PHP 语法:Zend Framework 视图脚本困境

发布于 2024-08-14 08:38:32 字数 654 浏览 8 评论 0 原文

所以我想在我的视图脚本中使用 jQuery 选项卡容器。我已经测试过它,所以我知道我已经一切正常。

<?php $this->tabContainer()->addPane('container-name', 'label', 'content goes here'); ?>
<?php echo $this->tabContainer('container-name'); ?>

但这是我想要放入窗格中的内容:

<?php if (count($this->resources->links) > 0): ?>
    <h3>Links</h3>
    <ul>
    <?php foreach ($this->resources->links as $link): ?>
        <li><?php echo $link->title; ?></li>
    <?php endforeach ?>
    </ul>
<?php endif; ?>

如何将 if/foreach 块放入 addPane 函数的内容参数中?

So I want to use a jQuery tab container in my view script. I have tested it so I know I already have everything working.

<?php $this->tabContainer()->addPane('container-name', 'label', 'content goes here'); ?>
<?php echo $this->tabContainer('container-name'); ?>

But this is the content that I want to put into the pane:

<?php if (count($this->resources->links) > 0): ?>
    <h3>Links</h3>
    <ul>
    <?php foreach ($this->resources->links as $link): ?>
        <li><?php echo $link->title; ?></li>
    <?php endforeach ?>
    </ul>
<?php endif; ?>

How can I get that if/foreach block into the content param of the addPane function?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情绪 2024-08-21 08:38:32

也许您想要的是 ob_start(), ob_get_clean() 对。

<?php
ob_start();
if (count($this->resources->links) > 0): ?>
    <h3>Links</h3>
    <ul>
    <?php foreach ($this->resources->links as $link): ?>
        <li><?php echo $link->title; ?></li>
    <?php endforeach ?>
    </ul>
<?php endif;
$things = ob_get_clean();
$this->tabContainer()->addPane('container-name', 'label', $things);
echo $this->tabContainer('container-name'); ?>

Maybe what you want is ob_start(), ob_get_clean() pair.

<?php
ob_start();
if (count($this->resources->links) > 0): ?>
    <h3>Links</h3>
    <ul>
    <?php foreach ($this->resources->links as $link): ?>
        <li><?php echo $link->title; ?></li>
    <?php endforeach ?>
    </ul>
<?php endif;
$things = ob_get_clean();
$this->tabContainer()->addPane('container-name', 'label', $things);
echo $this->tabContainer('container-name'); ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文