本文整理汇总了PHP中WCF::getQuoteInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP WCF::getQuoteInfo方法的具体用法?PHP WCF::getQuoteInfo怎么用?PHP WCF::getQuoteInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WCF
的用法示例。
在下文中一共展示了WCF::getQuoteInfo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<label>
<p>Reply title</p>
<input name="title" type="text" maxlength="150" value="<?php
echo $topic ? 'Re: ' . WCF::parseTitle($topic['name']) : '';
?>
" />
</label>
<label>
<p>Reply text</p>
<?php
echo '<textarea name="text" class="bbcode">';
//Check if we're quoting somebody
if ($quote) {
//Try getting info about the post
if ($QuoteInfo = WCF::getQuoteInfo($quote)) {
echo '[quote=', $QuoteInfo['author'], ']', $QuoteInfo['text'], '[/quote]', "\n\r";
}
}
echo '</textarea>';
?>
</label>
<input type="hidden" value="<?php
echo $topicId;
?>
" name="topic" />
<div>
<input type="submit" value="Post Reply" />