PHP character interception and image filtering function

Source: Internet
Author: User
Keywords Web Programming PHP Tutorials
Tags content expression free of charge function image php programming start

This article free of charge for your friends to provide a PHP character interception and image filter function Oh, if you like to come in and see this picture filter regular expression test

function Msubstr ($str, $start, $len) {
$tmpstr = "";
$strlen = $start + $len;
for ($i = 0; $i < $strlen; $i + +) {
if (Ord ($str, $i, 1)) > 0xa0) {
$tmpstr. = substr ($str, $i, 2);
$i + +;
Else
$tmpstr. = substr ($str, $i, 1);
}
return $tmpstr;
}

Filter pictures
function Img_empty ($content) {
$content =eregi_replace ("<img [a-za-z0-9~!&.:"/._#=~&%]+) > "," ", $content);
return $content;
}

Related Article

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.