PHP ckeditor upload image file name garbled solution _php Tutorial

Source: Internet
Author: User
File name garbled is usually caused by Chinese, because CKEditor use is UFT8 encoding if we use the page is GBK or gb2312 can be garbled problem, the solution as long as the upload file rename.

Open the editor/filemanager/connectors/php directory under Commands.php, find the FileUpload function,

The code is as follows Copy Code

$sExtension = substr ($sFileName, (Strrpos ($sFileName, '. ') + 1));
$sExtension = Strtolower ($sExtension);

After adding

$sFileName = rand (0,100). ".". $sExtension;

The RAND function here can change the renaming rules on its own.

Another way to upload a picture file name garbled solution to use the Iconv function to encode the file name, but there is still a problem with the same name, so for fckeditor upload picture filename is best or rename

http://www.bkjia.com/PHPjc/632759.html www.bkjia.com true http://www.bkjia.com/PHPjc/632759.html techarticle file name garbled is usually caused by Chinese, because CKEditor use is UFT8 encoding if we use the page is GBK or gb2312 there may be garbled problems, the solution as long as the upload text ...

  • 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.