


thinkphp implements image upload function sharing_PHP tutorial
1. We first need to create a table
CREATE TABLE IF NOT EXISTS `tp_image` (
`id` int(11 ) NOT NULL AUTO_INCREMENT,
`image` varchar(200) NOT NULL,
`create_time` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET =utf8;
2. Then add the configuration in the conf file (the last configuration is optional, just for the convenience of unified management of URL paths)
return array(
'URL_MODEL' => ; 2, // If your environment does not support PATHINFO, please set it to 3
'DB_TYPE' => 'mysql',
'DB_HOST' => ; 'thinkphp',
'DB_USER' => 'root',
'DB_PWD' => ',
'DB_PORT' => '3306',
'DB_PREFIX' = > Replace the Upload directory
in the root directory '__UPLOAD__' =>
3. Add an Image module (you can choose any name)
Copy code
The code is as follows:
/**
4. Create the corresponding index view file (index.html)
Copy code
The code is as follows:
5. Select the image and click the upload button, it will jump to the upload method of the Image module. There is no such method on the Image module yet, so we create it
class ImageAction extends Action{
/** <*>*/
Public function index () {
$ Image = m ('Image');
$ data = $ image- & gt; order ('create_time desc') ;find(); //Get the last uploaded image
var_dump($data);
$this->assign('data',$data);
$this->display ();
if(!empty($_FILES))
6. If the submission is not NULL, jump to the _upload method. This method implements the image upload function
Copy code
The code is as follows:
class ImageAction extends Action{
/**
* Create index entry method
*/
public function index(){
$image=M(' Image'); ; $ this->assign('data',$data); Jump to _upload method
public function upload(){ $this->_upload( );
}
}
> $upload = new UploadFile(); $upload->allowExts = explode (',', 'jpg,gif,png,jpeg');
//Set the attachment upload directory
The thumbnail diagram is effective for image files
$ upload-& gt; thumb = true;
// Set the reference image library package path
$ upload- & gt; imageClasspath = '@.org.image'
$ upload->thumbMaxWidth = '400,100';
🎜> $upload-> ;saveRule = 'uniqid';
Upload failed
if (!$upload ->upload())
else
{
> import('@.ORG.Image'); : :water($uploadList[0]['savepath'] . 'm_' . $uploadList[0]['savename'], APP_PATH.'Tpl/Public/Images/logo.png');
// The picture name is assigned to the field image
$ _post ['Image'] = $ uploadlist [0] ['savename'];
}
$ model = m ('image');
//Save the current data object
$data['image'] = $_POST['image'];
$data['create_time'] = NOW_TIME;
$list = $model->add ($data);
if ($list !== false)
{
$this->success('Uploaded image successfully!');
}
else
{
‐
The upload was successful and two thumbnails were generated
What needs to be explained is:
The image upload class (UploadFile.class.php) and image model class (Image.class.php) that come with ThinkPHP require the full version of the ThinkPHP package.
If not, you need to create a folder (ORG) in Lib, then go to the official website to download the expansion package and put these two files into the ORG folder.
Mine is the second situation
www.bkjia.com
true
http: //www.bkjia.com/PHPjc/736807.html
TechArticle
1. We first need to create a table and copy the code as follows: CREATE TABLE IF NOT EXISTS `tp_image` ( `id ` int(11) NOT NULL AUTO_INCREMENT, `image` varchar(200) NOT NULL, `create_...

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



To run the ThinkPHP project, you need to: install Composer; use Composer to create the project; enter the project directory and execute php bin/console serve; visit http://localhost:8000 to view the welcome page.

ThinkPHP has multiple versions designed for different PHP versions. Major versions include 3.2, 5.0, 5.1, and 6.0, while minor versions are used to fix bugs and provide new features. The latest stable version is ThinkPHP 6.0.16. When choosing a version, consider the PHP version, feature requirements, and community support. It is recommended to use the latest stable version for best performance and support.

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

WeChat applet implements picture upload function With the development of mobile Internet, WeChat applet has become an indispensable part of people's lives. WeChat mini programs not only provide a wealth of application scenarios, but also support developer-defined functions, including image upload functions. This article will introduce how to implement the image upload function in the WeChat applet and provide specific code examples. 1. Preparatory work Before starting to write code, we need to download and install the WeChat developer tools and register as a WeChat developer. At the same time, you also need to understand WeChat

"Development Suggestions: How to Use the ThinkPHP Framework to Implement Asynchronous Tasks" With the rapid development of Internet technology, Web applications have increasingly higher requirements for handling a large number of concurrent requests and complex business logic. In order to improve system performance and user experience, developers often consider using asynchronous tasks to perform some time-consuming operations, such as sending emails, processing file uploads, generating reports, etc. In the field of PHP, the ThinkPHP framework, as a popular development framework, provides some convenient ways to implement asynchronous tasks.

Performance comparison of Laravel and ThinkPHP frameworks: ThinkPHP generally performs better than Laravel, focusing on optimization and caching. Laravel performs well, but for complex applications, ThinkPHP may be a better fit.

ThinkPHP installation steps: Prepare PHP, Composer, and MySQL environments. Create projects using Composer. Install the ThinkPHP framework and dependencies. Configure database connection. Generate application code. Launch the application and visit http://localhost:8000.

ThinkPHP is a high-performance PHP framework with advantages such as caching mechanism, code optimization, parallel processing and database optimization. Official performance tests show that it can handle more than 10,000 requests per second and is widely used in large-scale websites and enterprise systems such as JD.com and Ctrip in actual applications.
