Search results

  1. K

    PHP OOPS Factory pattern?

    plz help me understand what am i doing wrong, <?php class identity { function __construct() { echo __CLASS__; } function render() { echo "<p>Its Working!</p>"; } } class User { function __construct($type) { if($type=='buyer') { $user =...
Back
Top