收藏一些规范化输入输出的PHP函数_PHP教程
程序员文章站
2022-05-10 11:15:05
...
在PHP网站开发过程中会遇到很多需要转义的地方,下面推荐几个很好的函数,可以很好地增强网站的输入输出规范化问题。
1. 纯文本输出,适合input
function t($text){ $text = h($text); $text = strip_tags($text); return $text; }
2. 多行纯文本 适合textarea
function text($text) { return trim(nl2br(str_replace(' ', ' ', htmlspecialchars($text)))); }
3. 将html换行变成回车
function br2nl($text) { return trim(preg_replace('/
/i', '', $text)); }
4. 输出安全的html
function h($text){ $text = trim($text); $text = stripslashes($text); //完全过滤注释 $text = preg_replace('//','',$text); //完全过滤动态代码 $text = preg_replace('//','',$text); //完全过滤js $text = preg_replace('/
5. 过滤脚本代码
function cleanJs($text){ $text = trim($text); $text = stripslashes($text); //完全过滤动态代码 $text = preg_replace('//','',$text); //完全过滤js $text = preg_replace('/
6. 在编辑器中显示纯文本
function et($text) { return trim(br2nl(str_replace(' ', ' ', $text ))); }
7. 在html编辑器中显示html
function eh($text) { return trim(str_replace('"','"', $text)); }
8. 判断时间距离
function friendlyDate($sTime,$type = 'normal',$alt = 'false') { //sTime=源时间,cTime=当前时间,dTime=时间差 $cTime = time(); $dTime = $cTime - $sTime; $dDay = intval(date("Ymd",$cTime)) - intval(date("Ymd",$sTime)); $dYear = intval(date("Y",$cTime)) - intval(date("Y",$sTime)); //normal:n秒前,n分钟前,n小时前,日期 if($type=='normal'){ if( $dTime = 3600 && $dDay == 0 ) { echo intval($dTime/3600)."小时前"; } elseif($dYear==0) { echo date("m-d ,H:i",$sTime); } else { echo date("Y-m-d ,H:i",$sTime); } //full: Y-m-d , H:i:s } elseif($type=='full') { echo date("Y-m-d , H:i:s",$sTime); } }
推荐阅读
-
php函数指定默认值方法的小例子_PHP教程
-
php中Curl函数常用的两个例子_PHP教程
-
做了CDN获取用户真实IP的函数代码(PHP与Asp设置方式)_PHP教程
-
一些需要禁用的PHP危险函数(disable_functions)_PHP
-
PHP array_multisort() 函数的深入解析_PHP教程
-
PHP 自定义错误处理函数的使用详解_PHP教程
-
从Discuz里拿出来的PHP字符串加密函数_PHP教程
-
PHP-CGI进程CPU 100% 与 file_get_contents 函数的关系分析_PHP教程
-
(一)php的基本知识和一些注意点_PHP教程
-
php获取url地址一些函数总结_PHP教程