class Student
{
	public $Name;
	
	function __construct($Name)
	{
		$this->Name = $Name;
		global $num;
		$num++;
		echo $Name."进来了<br/>";
	}
}

$stu1 = new Student("张三");
$stu2 = new Student("李四");
$stu3 = new Student("王五");

echo "共 ".$num." 人";

输出:

张三进来了
李四进来了
王五进来了
共 3 人

你可能感兴趣的文章