Skip to content

Instantly share code, notes, and snippets.

@antonmedv
antonmedv / Example.php
Created October 21, 2013 10:11
Example of getters and setters in PHP.
<?php
$foo = new Foo();
$foo->id = 1;
$foo->text = 'Hello';
echo $foo->id; // 1
echo $foo->text; // Hello World!