php 对输入信息的进行安全过滤的函数代码

 2025-01-15  阅读 448  评论 8  点赞 417

摘要:复制代码 代码如下: // define constannts for input reading define('input_get', 0x0101); define('input_post', 0x0102); define('input_gpc', 0x0103); /** * read input value and convert it for internal use * performs stripslashes() and charset conversion if ne
复制代码 代码如下:

// define constannts for input reading
define('input_get', 0x0101);
define('input_post', 0x0102);
define('input_gpc', 0x0103);

/**
* read input value and convert it for internal use
* performs stripslashes() and charset conversion if necessary
*
* @param string field name to read
* @param int source to get value from (gpc)
* @param boolean allow html tags in field value
* @param string charset to convert into
* @return string field value or null if not available
*/
function get_input_value($fname, $source, $allow_html=false, $charset=null) {
$value = null;

if ($source == input_get && isset($_get[$fname]))
$value = $_get[$fname];
else if ($source == input_post && isset($_post[$fname]))
$value = $_post[$fname];
else if ($source == input_gpc) {
if (isset($_post[$fname]))
$value = $_post[$fname];
else if (isset($_get[$fname]))
$value = $_get[$fname];
else if (isset($_cookie[$fname]))
$value = $_cookie[$fname];
}

if (empty($value))
return $value;

// strip single quotes if magic_quotes_sybase is enabled
if (ini_get('magic_quotes_sybase'))
$value = str_replace("''", "'", $value);
// strip slashes if magic_quotes enabled
else if (get_magic_quotes_gpc() || get_magic_quotes_runtime())
$value = stripslashes($value);

// remove html tags if not allowed
if (!$allow_html)
$value = strip_tags($value);

// convert to internal charset
return $value;
}

用法:get_input_value('_uid', input_get)
标签:phpphp教程

评论列表:

  •   xiedaimade
     发布于 2天前回复该评论
  • 又学到了新知识!
  •   xixi2
     发布于 2天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0267秒, 内存占用1.93 MB, 访问数据库29次

冀ICP备19034377号