search
HomeBackend DevelopmentPHP8Example of new features in PHP8: How to use attribute deduction and code to reduce duplicate code?

Example of new features in PHP8: How to use attribute deduction and code to reduce duplicate code?

PHP8 is the latest version of the PHP programming language, officially released on November 26, 2020. As a language widely used in web development, PHP8 brings many exciting new features, including property inference and code reduction capabilities. This article will introduce some examples of how to use these new features.

1. Attribute Derivation

In past PHP versions, we needed to manually define getter and setter methods for class attributes to access and modify attributes. But in PHP8, we can use attribute deduction to simplify this process.

Consider the following example, we create a Person class containing two attributes: name and age:

class Person {
    public string $name;
    public int $age;

    public function getName(): string {
        return $this->name;
    }

    public function setName(string $name): void {
        $this->name = $name;
    }

    public function getAge(): int {
        return $this->age;
    }

    public function setAge(int $age): void {
        $this->age = $age;
    }
}

In PHP8, we can use attribute deduction to simplify this code:

class Person {
    public function __construct(
        public string $name,
        public int $age,
    ) {}
}

By using property deduction, we can define the properties of the class directly in the constructor and omit the definition of the getter and setter methods. Now, we can instantiate the Person class and access the properties in the following way:

$person = new Person('John Doe', 25);
echo $person->name;  // 输出:John Doe
echo $person->age;  // 输出:25

As you can see, using property derivation greatly simplifies the code structure and reduces the writing of redundant code.

2. Reduce code duplication

In PHP8, we have also introduced some new functions and functions that can be used to reduce code duplication. Two of these features will be introduced below: named parameters and the null coalescing operator.

  1. Named parameters

Named parameters mean that when a function or method is called, parameter values ​​can be passed by specifying parameter names. This reduces dependence on parameter location and improves code readability and maintainability.

Consider the following example, we have a function that calculates the sum of two numbers:

function sum(int $a, int $b): int {
    return $a + $b;
}

echo sum(5, 10);  // 输出:15

In previous versions, we had to pass parameter values ​​in the order in which the function was defined. But in PHP8, we can use named parameters to call functions:

echo sum(b: 5, a: 10);  // 输出:15

By specifying parameter names, we can pass parameter values ​​in any order, making the code more intuitive and readable.

  1. null coalescing operator

In PHP, we often need to check if a variable is null and provide a default value if it is null. In previous versions, we usually used the ternary operator or if statement to achieve this function.

Consider the following example where we need to check if a variable is null and provide it with a default value:

$username = isset($_GET['username']) ? $_GET['username'] : 'Guest';

In PHP8, we can use the null coalescing operator (??) to simplify this Code snippet:

$username = $_GET['username'] ?? 'Guest';

If $_GET['username'] is not null, assign its value to $username; otherwise, assign 'Guest' to $username.

In addition to the above examples, PHP8 also introduces some other new features, such as match expressions, static return type declarations, etc. These features have greatly improved the functionality and flexibility of PHP.

Summary:

This article introduces two new features in PHP8: attribute derivation and code reduction to duplicate code. Property derivation makes defining class properties more concise and intuitive, reducing the writing of redundant getter and setter methods. The two functions of named parameters and null coalescing operator improve the readability and maintainability of the code. With the release of PHP8, we will be able to write concise and efficient PHP code more easily.

The above is the detailed content of Example of new features in PHP8: How to use attribute deduction and code to reduce duplicate code?. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
PHP 8 Installation Guide: Step-by-Step for Windows, macOS, and LinuxPHP 8 Installation Guide: Step-by-Step for Windows, macOS, and LinuxMar 10, 2025 am 11:14 AM

This guide details PHP 8 installation on Windows, macOS, and Linux. It covers OS-specific steps, including using package managers (Homebrew, apt), manual installation from source, and configuring PHP with Apache or Nginx. Troubleshooting tips are a

How Can I Leverage PHPStan for Static Analysis in PHP 8?How Can I Leverage PHPStan for Static Analysis in PHP 8?Mar 10, 2025 pm 06:00 PM

This article explains how to use PHPStan for static analysis in PHP 8 projects. It details installation, command-line usage, and phpstan.neon configuration for customizing analysis levels, excluding paths, and managing rules. The benefits include

PHP 8: Working with Arrays - Tips and Tricks for Efficient Data HandlingPHP 8: Working with Arrays - Tips and Tricks for Efficient Data HandlingMar 10, 2025 am 11:28 AM

This article explores efficient array handling in PHP 8. It examines techniques for optimizing array operations, including using appropriate functions (e.g., array_map), data structures (e.g., SplFixedArray), and avoiding pitfalls like unnecessary c

How Do I Stay Up-to-Date with the Latest PHP 8 Best Practices and Trends?How Do I Stay Up-to-Date with the Latest PHP 8 Best Practices and Trends?Mar 10, 2025 pm 06:04 PM

This article details how to stay updated on PHP 8 best practices. It emphasizes consistent engagement with resources like blogs, online communities, conferences, and the official documentation. Key PHP 8 features like union types, named arguments,

How Do I Write Effective Unit Tests for PHP 8 Code?How Do I Write Effective Unit Tests for PHP 8 Code?Mar 10, 2025 pm 06:00 PM

This article details best practices for writing effective PHPUnit unit tests in PHP 8. It emphasizes principles like independence, atomicity, and speed, advocating for leveraging PHP 8 features and avoiding common pitfalls such as over-mocking and

PHP 8: Date and Time Manipulation - Mastering the DateTime ClassPHP 8: Date and Time Manipulation - Mastering the DateTime ClassMar 10, 2025 am 11:29 AM

This article details PHP 8's DateTime class for date/time manipulation. It covers core functionalities, improved error handling, union types, and attributes. Best practices for efficient calculations, time zone handling, and internationalization a

PHP 8 Security: Protect Your Website from Common VulnerabilitiesPHP 8 Security: Protect Your Website from Common VulnerabilitiesMar 10, 2025 am 11:26 AM

This article examines common PHP 8 security vulnerabilities, including SQL injection, XSS, CSRF, session hijacking, file inclusion, and RCE. It emphasizes best practices like input validation, output encoding, secure session management, and regular

How Do I Implement Event Sourcing in PHP 8?How Do I Implement Event Sourcing in PHP 8?Mar 10, 2025 pm 04:12 PM

This article details implementing event sourcing in PHP 8. It covers defining domain events, designing an event store, implementing event handlers, and reconstructing aggregate states. Best practices, common pitfalls, and helpful libraries (Prooph,

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment