<?php class GetInfo { public $name; function __construct($name) { $this->name = $name; $name = strtoupper($name); return $name; } } $a = new GetInfo('Ivan'); echo $a->__construct('Ivan');
You have javascript disabled. You will not be able to edit any code.