Fully object oriented + strongly typed PHP
I wrote a few classes today allowing you to use all of your types as objects (like in Java).
$string = new vstring(’Hello!’);
$upper = $string -> upper();
echo $upper -> get();
This will output “HELLO!”
I wrote a few classes today allowing you to use all of your types as objects (like in Java).
$string = new vstring(’Hello!’);
$upper = $string -> upper();
echo $upper -> get();
This will output “HELLO!”