Analysis of PHP storage and library _php skills

Source: Internet
Author: User
Tags chr

Data put into the database and taken out to display on the page need to pay attention to what
When in storage
$str =addslashes ($STR);
$sql =\ "INSERT INTO ' tab ' (' Content ') VALUES (\ ' $str \ ') \";
When you are out of the library
$str =stripslashes ($STR);
when displayed
$str =htmlspecialchars (NL2BR ($STR));
?
//--title, name, etc. field warehousing processing (go to the end of space)
Functiontrans_string_trim ($STR) {
$str =trim ($STR);
$str =eregi_replace ("'", "" ", $str);
$str =stripslashes ($STR);
RETURN$STR;
}
//--Article warehousing processing, that is, textarea field;
Functiontrans_string ($STR) {
$str =eregi_replace ("'", "" ", $str);
$str =stripslashes ($STR);
RETURN$STR;
}
//--is displayed in the form from the library, in text, trans, in textarea, without conversion, direct display
--Display on a Web page, filter HTML code, include a link address
Functiontrans ($string) {
$string =htmlspecialchars ($string);
$string =ereg_replace (CHR), "<br>", $string);
$string =ereg_replace (CHR), "", $string);
return$string;
}
//--is displayed on the Web page without filtering the HTML code;
Functiontrans_web ($string) {
$string =ereg_replace (CHR), "<br>", $string);
$string =ereg_replace (CHR), "", $string);
return$string;
}
//--is displayed on the Web page, filtering HTML code and leading and trailing spaces, mainly for displaying user nicknames
Functiontrans_trim ($string) {
$string =trim ($string);
$string =htmlspecialchars ($string);
$string =ereg_replace (CHR), "<br>", $string);
$string =ereg_replace (CHR), "", $string);
return$string;
}
the//--is displayed in span;
Functiontrans_span ($string) {
$string =ereg_replace (CHR), "\ n", $string);
$string =ereg_replace (CHR), "", $string);
$string =ereg_replace (' "," "", $string);
return$string;
}
//--displays cookies on the web, filtering HTML
Functiontrans_cookie ($STR) {
$str =trans ($STR);
$str =stripslashes ($STR);
$str =eregi_replace ("" "," "", $str);
RETURN$STR;
}
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.