Skip to content

Instantly share code, notes, and snippets.

@ivansammartino
ivansammartino / interface.php
Last active December 29, 2018 01:59
PHP interface example (english)
<?php
// interface
interface Color {
function color(); // define text color
function bg_color(); // define background color
}
// colors
class Yellow implements Color {
public function color() {
return '#000'; // black text
@ivansammartino
ivansammartino / interface.php
Last active December 29, 2018 01:54
PHP interface example
<?php
// interfaccia
interface Colore {
function color(); // definisce il colore del testo
function bg_color(); // definisce il colore di sfondo
}
// colori
class Giallo implements Colore {
public function color() {