PHP adds a domain name to the image in the editor

Source: Internet
Author: User
Tags array sort
PHP adds a domain name to the image in the editor

?

/** * Replace picture in Fckedit add domain name * @param string $content What to replace * @param string $STRURL The name of the picture to add @return String * @eg */f Unction Replacepicurl ($content = null, $STRURL = null) {if ($STRURL) {//extract the regular expression of the src of the picture path and deposit the result in $matches preg_match_a    LL ("/]+>/isu", $content, $matches);          $img = "";          if (!empty ($matches)) {//Note that the above regular expression indicates that the value of SRC is placed in the third of the array $img = $matches [2];          }else {$img = "";                  } if (!empty ($img)) {$patterns = array ();                  $replacements = Array ();                  foreach ($img as $imgItem) {$final _imgurl = $strUrl. $imgItem;                  $replacements [] = $final _imgurl; $img _new = "/". Preg_replace ("/\//i", "\ \", $imgItem). "                  /";                  $patterns [] = $img _new;                  }//Let the array sort by key ksort ($patterns);                    Ksort ($replacements); Replace content $vote _content = Preg_Replace ($patterns, $replacements, $content); return $vote _content;}           else {return $content;} } else {return $content;}}
  • 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.