PHP 的新功能

php 的新功能

php 8.4:新增功能以及如何使用它

php 8.4 现已推出,带来了一些令人兴奋的功能,可以简化编码并提高性能。本文通过简单的示例解释了最重要的更新,使各种技能水平的开发人员都能轻松理解和使用这些功能。


1. 属性挂钩

属性挂钩可让您自定义获取或设置属性时发生的情况。这消除了对单独的 getter 和 setter 方法的需要。

例子:

class user {
    private string $firstname;
    private string $lastname;

    public function __construct(string $firstname, string $lastname) {
        $this->firstname = $firstname;
        $this->lastname = $lastname;
    }

    // this property combines first and last name
    public string $fullname {
        get => $this->firstname . ' ' . $this->lastname;
        set => [$this->firstname, $this->lastname] = explode(' ', $value, 2);
    }
}

$user = new user('john', 'doe');
echo $user->fullname; // output: john doe

$user->fullname = 'jane smith'; // updates first and last names
echo $user->fullname; // output: jane smith

为什么有用:

属性挂钩使您的代码更干净并减少样板文件。


2. 可见性不对称

您现在可以设置不同级别的可见性来读取和写入属性。例如,一个属性可以被所有人读取,但只能被类本身写入。

例子:

class bankaccount {
    public private(set) float $balance; // public read, private write

    public function __construct(float $initialbalance) {
        $this->balance = $initialbalance; // allowed here
    }

    public function deposit(float $amount): void {
        $this->balance += $amount; // allowed here
    }
}

$account = new bankaccount(100.0);
echo $account->balance; // output: 100

$account->deposit(50.0); // adds 50 to the balance
echo $account->balance; // output: 150

// the following line will cause an error:
// $account->balance = 200.0;

为什么有用:

此功能可以更轻松地控制属性的访问和更新方式。


3. 新的数组函数

php 8.4 添加了新的数组函数,使您无需编写手动循环。

例子:

$numbers = [1, 2, 3, 4, 5];

// find the first even number
$firsteven = array_find($numbers, fn($n) => $n % 2 === 0);
echo $firsteven; // output: 2

// check if any number is greater than 4
$hasbignumber = array_any($numbers, fn($n) => $n > 4);
var_dump($hasbignumber); // output: bool(true)

// check if all numbers are positive
$allpositive = array_all($numbers, fn($n) => $n > 0);
var_dump($allpositive); // output: bool(true)

为什么有用:

这些函数使数组操作编写起来更快、更容易理解。


4. 简化的对象实例化

您现在可以创建一个对象并立即调用它的方法,而无需将实例化放在括号中。

例子:

class logger {
    public function log(string $message): void {
        echo $message;
    }
}

// create an object and call a method in one step
new logger()->log('logging a message'); // output: logging a message

为什么有用:

它减少了不必要的语法,使您的代码更干净。


5. 弃用隐式可为空类型

php 8.4 要求您显式声明参数何时可以为 null。这使得代码更容易理解和维护。

例子:

// php 8.4 (recommended):
function process(?string $data = null) {
    echo $data ?? 'no data provided';
}

为什么有用:

显式声明可以防止混淆并减少潜在的错误。


6. 惰性对象

惰性对象让您可以延迟创建对象直到实际使用它,这样可以节省资源。

例子:

class ExpensiveResource {
    public function __construct() {
        // Simulate a time-consuming setup
        sleep(2);
    }

    public function doWork(): void {
        echo 'Working...';
    }
}

// Use a lazy object to delay creation
$initializer = fn() => new ExpensiveResource();
$reflector = new ReflectionClass(ExpensiveResource::class);
$resource = $reflector->newLazyProxy($initializer);

// The object isn't created yet
$resource->doWork(); // Now the object is created and "Working..." is printed

为什么有用:

这在处理昂贵的操作或大型系统时特别有用。


结论

php 8.4 引入了多项功能,使编码更简单、更强大:

  • property hooks:替换 getter 和 setter 函数。
  • 不对称可见性:更好地控制财产访问。
  • 新数组函数:简化常见数组操作。
  • 简化的对象实例化:更清晰的对象创建。
  • 弃用隐式可空类型:更安全、更清晰的代码。
  • 惰性对象:通过延迟对象创建来节省资源。

无论您是初学者还是经验丰富的开发人员,这些更新都将使 php 使用起来更加愉快。从今天开始探索 php 8.4!

以上就是PHP 的新功能的详细内容,更多请关注硕下网其它相关文章!