Diese Code funktioniert nicht:
interface iface1 {
function hallo();
}
trait t1 implements iface1 {
function hallo() { echo "Hallo"; }
}
Fatal error: Cannot use 'iface1' as interface on 't1' since it is a Trait in test.php on line 6
Diese Code funktioniert:
interface iface1 {
function hallo();
}
class c1 implements iface1 {
function hallo() { echo "Hallo"; }
}
Neuen Kommentar schreiben