In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article mainly introduces "how php filters post and get sensitive data in batches". In daily operation, I believe many people have doubts about how php batch filters post and get sensitive data. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the questions of "how php batch filters post and get sensitive data". Next, please follow the editor to study!
Function code:
The copy code is as follows:
/ / php batch filter post,get sensitive data
If (get_magic_quotes_gpc ()) {
$_ GET = stripslashes_array ($_ GET)
$_ POST = stripslashes_array ($_ POST)
}
Function stripslashes_array (& $array) {
While (list ($key,$var) = each ($array)) {
If ($key! = 'argc' & & $key! =' argv' & & (strtoupper ($key)! = $key | | '.intval ($key) = = "$key") {) {
If (is_string ($var)) {
$array [$key] = stripslashes ($var)
}
If (is_array ($var)) {
$array [$key] = stripslashes_array ($var)
}
}
}
Return $array
}
/ / filter
Function htmlencode ($str) {
If (empty ($str)) return
If ($str== "") return $str
$str=trim ($str)
$str=str_replace ("&", $str)
$str=str_replace (">", $str)
$str=str_replace ("", $str)
$str=str_replace (",", $str)
$str = str_replace ("", ">", $str)
$str=str_replace ("
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.