Run ❯
Get your
own PHP
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <?php trait message1 { public function msgA() { echo "My favorite color is red. "; } public function msgB() { echo "My favorite number is 5. "; } } trait message2 { public function msgA() { echo "My favorite color is blue. "; } public function msgB() { echo "My favorite number is 7. "; } } class MyClass { use message1, message2 { message1::msgA insteadof message2; message2::msgB insteadof message1; } } $obj = new MyClass(); $obj->msgA(); $obj->msgB(); ?> </body> </html>
My favorite color is red. My favorite number is 7.