Book Image

PhpStorm Cookbook

By : Mukund Chaudhary
Book Image

PhpStorm Cookbook

By: Mukund Chaudhary

Overview of this book

Table of Contents (16 chapters)
PhpStorm Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Creating an empty project


The feeling that you get when you find some support in times of trouble can be said to have an analogy with that feeling of finding cold water to drink in times of thirst. This statement's analogy with the current scenario is that until this point in time, you were unable to find the exact project type to create, but now you have found a way out.

Getting ready

You need to create an empty PHP project when you are convinced enough to need to create a new project and achieve a new feat by fulfilling your manager's business demand.

How to do it...

A new empty project is the easiest to create:

  1. You need to specify a name for your new project. Don't worry even if there are spelling mistakes in the name itself because PhpStorm doesn't check the name you specify against the dictionary.

  2. A project name should only contain valid characters that a directory name should contain under an operating system.

How it works...

Creating an empty project is easy to understand. You need to specify...