<?php class B { public function __toString() { return "Instances of B() can be treated as a strings!\n"; } } $b = new B(); print($b); //Instances of B() can be treated as a strings! print(is_string($b) ? 'true' : 'false'); //false
You have javascript disabled. You will not be able to edit any code.