欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

php实例化类 博客分类: PHP php类 

程序员文章站 2024-03-19 23:37:29
...

一 代码

<?php
class Student
{
    private $name;     //定义类的属性
	private $age;
	
	public function __construct($name, $age)     //定义构造方法
	{
	    $this->name = $name;
		$this->age = $age;
	} 
	
	public function getNameAndAge()     //定义类的成员方法
	{
	    return "学生" . $this->name . "今年" . $this->age . "周岁";
	}
 
}
$student = new Student("小明", 15);    //类的实例化
echo $student->getNameAndAge();    //调用类的成员方法
?>

 

二 运行结果
学生小明今年15周岁
相关标签: php