Table of Contents
Yii gets the suffix name of the uploaded file
Articles you may be interested in
Home Backend Development PHP Tutorial Yii gets the suffix name of the uploaded file_PHP tutorial

Yii gets the suffix name of the uploaded file_PHP tutorial

Jul 13, 2016 am 09:48 AM
yii upload host suffix document use of Obtain

Yii gets the suffix name of the uploaded file

Yii gets the suffix name of the uploaded file, mainly using the getExtensionName() method in the CUploadedFile class, for example:

<?php
......
$form->image=CUploadedFile::getInstance($form->model, 'image');
$randName=date('Ymdhis').rand(100,999).'.'.$form->model->image->getExtensionName();
$form->model->image->saveAs(Yii::app()->basePath.'/../upload/'.$randName);
......
Copy after login

Articles you may be interested in

  • Yii framework module development analysis
  • Summary of how to use database transactions in Yii
  • Yii Action method skills
  • How to store and rename uploaded files by date in fckeditor uploaded files
  • Detailed analysis and explanation of yii framework directory structure
  • Yii framework cache knowledge summary
  • Yii controller action parameter binding processing
  • How to configure the default controller and action in the yii framework

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1024332.htmlTechArticleYii gets the suffix name of the uploaded file Yii gets the suffix name of the uploaded file, mainly using getExtensionName( in the CUploadedFile class ) method, for example: ?php...$form-image=CUploadedFile::ge...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to transfer files from Quark Cloud Disk to Baidu Cloud Disk? How to transfer files from Quark Cloud Disk to Baidu Cloud Disk? Mar 14, 2024 pm 02:07 PM

How to transfer files from Quark Cloud Disk to Baidu Cloud Disk?

What to do if the 0x80004005 error code appears. The editor will teach you how to solve the 0x80004005 error code. What to do if the 0x80004005 error code appears. The editor will teach you how to solve the 0x80004005 error code. Mar 21, 2024 pm 09:17 PM

What to do if the 0x80004005 error code appears. The editor will teach you how to solve the 0x80004005 error code.

What is hiberfil.sys file? Can hiberfil.sys be deleted? What is hiberfil.sys file? Can hiberfil.sys be deleted? Mar 15, 2024 am 09:49 AM

What is hiberfil.sys file? Can hiberfil.sys be deleted?

Where to get Google security code Where to get Google security code Mar 30, 2024 am 11:11 AM

Where to get Google security code

Different uses of slashes and backslashes in file paths Different uses of slashes and backslashes in file paths Feb 26, 2024 pm 04:36 PM

Different uses of slashes and backslashes in file paths

Simple steps to upload your own music on Kugou Simple steps to upload your own music on Kugou Mar 25, 2024 pm 10:56 PM

Simple steps to upload your own music on Kugou

Detailed explanation of log viewing command in Linux system! Detailed explanation of log viewing command in Linux system! Mar 06, 2024 pm 03:55 PM

Detailed explanation of log viewing command in Linux system!

Detailed explanation of the role of .ibd files in MySQL and related precautions Detailed explanation of the role of .ibd files in MySQL and related precautions Mar 15, 2024 am 08:00 AM

Detailed explanation of the role of .ibd files in MySQL and related precautions

See all articles