Home > Development Tools > phpstorm > How can PHP make better use of PHPstorm's automatic prompts?

How can PHP make better use of PHPstorm's automatic prompts?

藏色散人
Release: 2021-04-22 10:38:17
forward
2118 people have browsed it

The following tutorial column of phpstorm will introduce to you how PHP can make better use of PHPstorm's automatic prompts. I hope it will be helpful to friends in need!

How PHP can make better use of PHPstorm’s automatic prompts

Explanation

After writing Java for a period of time, I am particularly not used to PHP’s own weak typing method. I always feel uneasy when writing code, especially PHP itself is a weakly typed language, so when coding, there are often no code prompts.

A general example

class Data {
    public $name;
    public $gender;
    public $age;
    public function __construct($name,$gender,$age) {
        $this->name = $name;
        $this->gender = $gender;
        $this->age = $age;
    }
}
class Test {
    public function run() {
        $data = [
            new Data('张三','男',18),
            new Data('李四','男',14),
            new Data('王五','男',17),
            new Data('大姨妈','女',23),
        ];
    }
    private function eachData($data) {
        foreach($data as $item) {
            echo $item->name.'=>'.$item->gender.'=>'.$item->age."\n";
        }
    }
}
(new Test)->run();
Copy after login

Judging from the above example, generally speaking, there is no problem. However, when writing the code

cho $item->name.'=>'.$item->sex.'=>'.$item->age."\n";
Copy after login

, when calling There is no automatic prompt for attributes, so when the amount of data is large, you need to scroll up and copy or write it down, which reduces the coding speed, and sometimes you are not sure what to write, and you are afraid of making mistakes.

The following is a complete example I wrote using comments and PHP features:

class Data {
    public $name;
    public $gender;
    public $age;
    public function __construct($name,$gender,$age) {
        $this->name = $name;
        $this->sex = $gender;
        $this->age = $age;
    }
}
class Test {
    public function run() {
        $data = [
            new Data('张三','男',18),
            new Data('李四','男',14),
            new Data('王五','男',17),
            new Data('大姨妈','女',23),
        ];
    }
    /**
     * 遍历输出数据
     * @param array $data
     */
    private function eachData($data) {
        foreach($data as $item) {
            if($item instanceof Data) {
                echo $item->name.'=>'.$item->gender.'=>'.$item->age."\n";
            }
        }
    }
}
(new Test)->run();
Copy after login

The main thing here is to add an if judgment to determine whether the data type is a specific instance of Data ;

In this place, PHPstorm will automatically prompt when calling the $item attribute based on this judgment, which is very convenient.

Thinking

Some thoughts I got from here is that we can better consider the rigor when writing the program. From the above example, we can do it this way, and add Some error handling mechanisms can better ensure the security and integrity of data, not just the convenience of editor prompts.

When you do code inspection and tracking later, it will be a very convenient thing, and the business logic will be clearer.

The above is the detailed content of How can PHP make better use of PHPstorm's automatic prompts?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template