' .
$row['description'] .
'
(.*?)<\/pre>/s', function ($matches) {
$content = $matches[1];
$content = htmlspecialchars_decode($content, ENT_QUOTES);
$content = str_replace("<", "<", $content);
$content = str_replace(">", ">", $content);
$content = str_replace("&", "&", $content);
$content = str_replace(""", "\"", $content);
$content = str_replace("'", "'", $content);
return "" . $content . "
";
}, $s);
return $s;
}
?>
Markdown原文
' .
$row['description'] .
'
';
}
?>