Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 541 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 541 Bytes

image

<?php
// 👋 Hello, I'm Ozh
$me = new Ozh;

var_dump($me->name);
// string(3) "ozh"

var_dump($me->likes);
// array(3) {
//   [0]=> string(5) "metal"
//   [1]=> string(4) "wine"
//   [2]=> string(3) "php"
// }

var_dump($me->projects);
// object(Projects)#1 (1) {
//     ["name"]=> string(13) "YOURLS/YOURLS"
// }

exit(0);