Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Yii2 By Example

You're reading from   Yii2 By Example Develop complete web applications from scratch through practical examples and tips for beginners and more advanced users

Arrow left icon
Product type Paperback
Published in Sep 2015
Publisher
ISBN-13 9781785287411
Length 344 pages
Edition 1st Edition
Tools
Arrow right icon
Author (1):
Arrow left icon
 Caldarelli Caldarelli
Author Profile Icon Caldarelli
Caldarelli
Arrow right icon
View More author details
Toc

Table of Contents (20) Chapters Close

Yii2 By Example
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Starting with Yii2 FREE CHAPTER 2. Creating a Simple News Reader 3. Making Pretty URLs 4. Creating a Room through Forms 5. Developing a Reservation System 6. Using a Grid for Data and Relations 7. Working on the User Interface 8. Log in to the App 9. Frontend to Display Rooms to Everyone 10. Localize the App 11. Creating an API for Use in a Mobile App 12. Create a Console Application to Automate the Periodic Task 13. Final Refactoring Index

Uploading files


The common task when data is sent from view to controller is uploading files. Also, in this case, Yii2 provides a convenient helper to handle this task: yii\web\UploadedFile. This class has two important methods: getInstance() (in plural form getInstances()) and saveAs().

The first method, getInstance(), allows us to get the file from the form's input field, while the second method, saveAs(), as its name implies, allows us to save file input field content to the server filesystem.

Before we start with the example, it is important to create a folder that will contain the uploaded files. The best place to create this folder is at the root directory of the application. So create a folder named uploadedfiles under the basic/ folder.

Note

Make sure that this folder is writable.

Next, to centralize configuration, define an alias for this new folder, so that we can change this path from app configuration. Enter in basic/config/web.php and append the aliases property, if it does not exist...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime
Visually different images