- PhpStorm Cookbook
- Mukund Chaudhary Ankur Kumar
- 234字
- 2021-08-06 19:43:18
Using code completion
The best example of the need to use an IDE instead of a standard editor is that an IDE understands your code and thus provides hints about the code that you might be writing or need next.
Getting ready
A standard editor would, at the maximum, provide basic text coloring based on the various keywords. Anyway, without hurting the feelings of editors, PhpStorm provides you with additional options besides providing you the standard code completion system.
How to do it...
There is the smart type completion that not only completes your code, but also finds and suggests the most eligible match for your code. By eligible, it means that the code hint matches the current context (the invoking object). This is particularly useful in cases in which you have honestly stuck to the Software Engineering principle of Inheritance.
Code completion settings in PhpStorm are available at File | Settings | Editor | Code Completion, as shown in the following screenshot:

How it works...
If you have a lot of items for PhpStorm to look up, for example, members of your created class, you can order PhpStorm to provide you with hints in lexicographical order.
To turn this feature on, you need to select the checkbox adjacent to Sort lookup items lexicographically. The following screenshot shows the code completion feature:

Code completion at your convenience! I hope this make sense to you.
- 前端跨界開發指南:JavaScript工具庫原理解析與實戰
- Visual Basic 6.0程序設計計算機組裝與維修
- 微服務設計原理與架構
- Learning SAP Analytics Cloud
- C語言程序設計教程(第2版)
- 單片機應用技術
- Windows Forensics Cookbook
- Hands-On Swift 5 Microservices Development
- Hands-On Reinforcement Learning with Python
- Java:High-Performance Apps with Java 9
- Learning FuelPHP for Effective PHP Development
- .NET Standard 2.0 Cookbook
- Python:Deeper Insights into Machine Learning
- Struts 2.x權威指南
- C++ System Programming Cookbook