本文整理汇总了PHP中Gdn_Format::replaceSpoilers方法的典型用法代码示例。如果您正苦于以下问题:PHP Gdn_Format::replaceSpoilers方法的具体用法?PHP Gdn_Format::replaceSpoilers怎么用?PHP Gdn_Format::replaceSpoilers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Gdn_Format
的用法示例。
在下文中一共展示了Gdn_Format::replaceSpoilers方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: plainText
/**
* Format a string as plain text.
* @param string $Body The text to format.
* @param string $Format The current format of the text.
* @return string
* @since 2.1
*/
public static function plainText($Body, $Format = 'Html')
{
$Result = Gdn_Format::to($Body, $Format);
$Result = Gdn_Format::replaceSpoilers($Result);
if ($Format != 'Text') {
// Remove returns and then replace html return tags with returns.
$Result = str_replace(array("\n", "\r"), ' ', $Result);
$Result = preg_replace('`<br\\s*/?>`', "\n", $Result);
// Fix lists.
$Result = str_replace('<li>', '* ', $Result);
$Result = preg_replace('`</(?:li|ol|ul)>`', "\n", $Result);
$Allblocks = '(?:div|table|dl|pre|blockquote|address|p|h[1-6]|section|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary)';
$Result = preg_replace('`</' . $Allblocks . '>`', "\n\n", $Result);
// TODO: Fix hard returns within pre blocks.
$Result = strip_tags($Result);
}
$Result = trim(html_entity_decode($Result, ENT_QUOTES, 'UTF-8'));
return $Result;
}