Modify thinkphp Upload class UploadFile. class. php

Source: Internet
Author: User
Using thinkphp, it is not allowed to place the thumbnail in the same directory as the source image when generating the thumbnail.

Using thinkphp, it is not allowed to place the thumbnail in the same directory as the source image when generating the thumbnail.

Modification method: Find the UploadFile. class. php Upload class.

Find row 161st,

If (false! ==$ Image ){

// Create a thumbnail for the image file

$ ThumbWidth = explode (',', $ this-> thumbMaxWidth );

$ ThumbHeight = explode (',', $ this-> thumbMaxHeight );

$ ThumbPrefix = explode (',', $ this-> thumbPrefix );

$ ThumbSuffix = explode (',', $ this-> thumbSuffix );

$ ThumbFile = explode (',', $ this-> thumbFile );

$ ThumbPath = $ this-> thumbPath? $ This-> thumbPath: $ file ['savepath'];

Changed:

$ File_savename = $ file ['savename'];

$ Sub_path = '';

If ($ this-> autoSub ){

// Use subdirectories to save files

$ Sub_path = $ this-> getSubName ($ file ).'/';

$ File_savename = str_replace ($ sub_path, '', $ file_savename );

}

If (false! ==$ Image ){

// The thumbnail generated by the image file

$ ThumbWidth = explode (',', $ this-> thumbMaxWidth );

$ ThumbHeight = explode (',', $ this-> thumbMaxHeight );

$ ThumbPrefix = explode (',', $ this-> thumbPrefix );

$ ThumbSuffix = explode (',', $ this-> thumbSuffix );

$ ThumbFile = explode (',', $ this-> thumbFile );

$ ThumbPath = $ this-> thumbPath? $ This-> thumbPath: $ file ['savepath'];

$ ThumbPath = $ thumbPath. $ sub_path;

This achieves the effect.

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.