Diferencia entre revisiones de «Traits»
Ir a la navegación
Ir a la búsqueda
([feat] Add information about Traits) |
|||
Línea 4: | Línea 4: | ||
Documentación oficial de traits: [https://www.php.net/manual/en/language.oop5.traits.php EN] | Documentación oficial de traits: [https://www.php.net/manual/en/language.oop5.traits.php EN] | ||
= Ejemplo = | |||
<?php | |||
trait message1 { | |||
public function msg1() { | |||
echo "OOP is fun! "; | |||
} | |||
} | |||
class Welcome { | |||
use message1; | |||
} | |||
$obj = new Welcome(); | |||
$obj->msg1(); |