当前位置 : 主页 > 网络编程 > PHP >

介绍php7.3到php7.4新特性

来源:互联网 收集:自由互联 发布时间:2021-08-10
1、对象属性现在支持类型申明 ?phpclass User { public int $id; public string $name;}? 上列例子中将会强制转化$id为integer类型, $name 为字符串类型

1、对象属性现在支持类型申明

<?php
class User {
    public int $id;
    public string $name;
}
?>

上列例子中将会强制转化$id为integer类型,$name为字符串类型

网友评论