Program 1
<html>
<head><title>Demo</title></head>
<body>
<center>
<?php
trait display
{
public function displaydata()
{
echo "Hello Friends How are you this is display data method.....<br>";
}
}
trait show
{
public function showdata()
{
echo "Hello Friends This is show data method.....<br>";
}
}
class First
{
use display,show;
}
class Second
{
use display,show{
}
}
$f=new First();
$f->displaydata();
$f->showdata();
$s=new Second();
$s->displaydata();
$s->showdata();
?>
</center>
</body>
</html>