當前位置: 首頁>>代碼示例>>PHP>>正文


PHP helper::slug方法代碼示例

本文整理匯總了PHP中helper::slug方法的典型用法代碼示例。如果您正苦於以下問題:PHP helper::slug方法的具體用法?PHP helper::slug怎麽用?PHP helper::slug使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在helper的用法示例。


在下文中一共展示了helper::slug方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: base64_encode

        <!-- LEAVE COMMENT -->
        <div class="row">
            <div class="span12 column-divider">
                <span class="column-divider-icon pull-left"><i class="icon-comment comment-icon-fix"></i></span>
                <h4>Schreib' was</h4>
            </div>
        </div>

        <div id="contact_form">
            <form action="/comment/place/<?php 
print base64_encode($entry->id + 1337);
?>
#comments" id="form" method="post">
                <input type="hidden" name="backto" value="<?php 
print base64_encode("/places/{$place->username}/{$entry->id}/" . helper::slug($entry->headline));
?>
"/>
                <textarea rows="6" class="placeholder span12" name="comment" placeholder="Kommentar"></textarea>
                <input class="submit darkbtn" type="submit" value="Abschicken">
            </form>
        </div>

        <br>

        <!-- SHOW COMMENTS -->
        <a name="comments"></a>

        <div class="row">
            <div class="span12 column-divider">
                <span class="column-divider-icon pull-left"><i class="icon-comments comment-icon-fix"></i></span>
開發者ID:Nyaan,項目名稱:meintagebuchonline,代碼行數:30,代碼來源:show.php

示例2: foreach

                <?php 
if (count($newest_entries)) {
    ?>
                    <ul class="no-list">
                        <?php 
    foreach ($newest_entries as $newest_entry) {
        ?>
                            <li style="margin:10px 0;">
                                <a href="/places/<?php 
        print $newest_entry->User->username;
        ?>
/<?php 
        print $newest_entry->id;
        ?>
/<?php 
        print helper::slug($newest_entry->headline);
        ?>
">
                                    <?php 
        print $newest_entry->headline;
        ?>
                                </a><br>

                                <p><i class="icon-time"></i> <?php 
        print date('d.m.Y - H:i:s', strtotime($newest_entry->created));
        ?>
</p>
                            </li>
                        <?php 
    }
    ?>
開發者ID:Nyaan,項目名稱:meintagebuchonline,代碼行數:31,代碼來源:neues.php

示例3: foreach

    print $place->username;
    ?>
</h5>
                        <ul class="cats">
                            <?php 
    foreach ($diaries as $diary) {
        ?>
                                <li>
                                    <a href="/places/diary/<?php 
        print $place->username;
        ?>
/<?php 
        print $diary->id;
        ?>
/<?php 
        print helper::slug($diary->name);
        ?>
">
                                        <?php 
        print $diary->name;
        ?>
                                    </a>
                                </li>
                            <?php 
    }
    ?>
                        </ul>
                    </div>
                <?php 
}
?>
開發者ID:Nyaan,項目名稱:meintagebuchonline,代碼行數:31,代碼來源:index.php


注:本文中的helper::slug方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。