这篇文章主要为大家详细介绍了PHP 显示格式化的用户输入示例,具有一定的参考价值,可以用来参考一下。
对PHP中显示格式化的用户输入感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* PHP中显示格式化的用户输入
*
* @param
* @arrange 512-笔记网: q1010.com
**/
function format_output($output) {
/****************************************************************************
* Takes a raw string ($output) and formats it for output using a special
* stripped down markup that is similar to HTML
****************************************************************************/
$output = htmlspecialchars(stripslashes($output));
/* new paragraph */
$output = str_replace('[p]', '<p>', $output);
/* bold */
$output = str_replace('[b]', '<b>', $output);
$output = str_replace('[/b]', '</b>', $output);
/* italics */
$output = str_replace('[i]', '<i>', $output);
$output = str_replace('[/i]', '</i>', $output);
/* preformatted */
$output = str_replace('[pre]', '<pre>', $output);
$output = str_replace('[/pre]', '</pre>', $output);
/* indented blocks (blockquote) */
$output = str_replace('[indent]', '<blockquote>', $output);
$output = str_replace('[/indent]', '</blockquote>', $output);
/* anchors */
$output = ereg_replace('\[anchor="([[:graph:]]+)"\]', '<a name="\\1"></a>', $output);
/* links, note we try to prevent javascript in links */
$output = str_replace('[link="javascript', '[link=" javascript', $output);
$output = ereg_replace('\[link="([[:graph:]]+)"\]', '<a href="\\1">', $output);
$output = str_replace('[/link]', '</a>', $output);
return nl2br($output);
}
/*** 来自四海网(www.q1010.com) ***/
一些注意的地方:本文来自:http://www.q1010.com/173/1312-0.html
注:关于PHP 显示格式化的用户输入示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:用户输入
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。