本文整理汇总了PHP中UI::get_story_break方法的典型用法代码示例。如果您正苦于以下问题:PHP UI::get_story_break方法的具体用法?PHP UI::get_story_break怎么用?PHP UI::get_story_break使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UI
的用法示例。
在下文中一共展示了UI::get_story_break方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<div class="post-extra card-separator">
<div class="post-actions-row">
<ul>
<li><a href="#" title="Like this post">Like</a></li>
<li>·</li>
<li><a href="#" title="Comment on this post">Comment</a></li>
</ul>
</div>
<div class="comments-section">
<b>0 comments</b> on this post.
</div>
</div>
</div>
</div>
</div>
<div class="right column">
<?php
echo UI::get_story_break("People you may know");
?>
<div class="box-shadow card">
<div class="main-card-content">
</div>
</div>
<?php
echo UI::get_footer();
?>
</div>
</div>
</body>
</html>
示例2:
echo $viewed_user->get_first_name();
?>
</h1>
</div>
<div class="bg card-separator">
Viewing <b><?php
echo UI::get_his_her_pronoun($viewed_user);
?>
most recent</b> stories first
</div>
</div>
</div>
</div>
<div class="right column">
<?php
echo UI::get_story_break("Basic information");
?>
<div class="box-shadow card">
<div class="card-separator">
Gender
<div class="bold rfloat">
<?php
echo UI::capitalize($viewed_user->get_gender());
?>
</div>
</div>
<div class="card-separator">
Email
<?php
$truncated_and_original_email = UI::truncate_word($viewed_user->get_email(), 13);
$original_email = $truncated_and_original_email[0];