PHP new 关键字
示例
创建对象并输出其属性值之一
<?php
class MyClass {
public $name = "John";
}
$obj = new MyClass();
echo "The name is " . $obj->name;
?>
尝试一下 »
定义和用法
The new
关键字用于从类创建对象。
相关页面
在我们的 PHP OOP - 类和对象教程 中了解更多关于类和对象的信息。
❮ PHP 关键字
创建对象并输出其属性值之一
<?php
class MyClass {
public $name = "John";
}
$obj = new MyClass();
echo "The name is " . $obj->name;
?>
尝试一下 »
The new
关键字用于从类创建对象。
在我们的 PHP OOP - 类和对象教程 中了解更多关于类和对象的信息。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]