Blogger Information
Blog 31
fans 3
comment 1
visits 34399
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
trait的用法
php学习笔记
Original
928 people have browsed it

trait可以实现代码的复用,下面用实例来演示一下:

实例

<?php
trait Course
{
	public function study($course='php')
	{
		return '我们在php中文网学习'.$course;
	}
}
class Student
{
	use Course;
}
$student = new Student();
echo $student->study();

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行结果:

2018-05-08_162120.png


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post