<?php
class Class1
{
    public $property1;
    public $property2;
 
    public function __construct(array $values = array("property1" => "", "property2" => ""))
    {
        foreach ($this as $property => $value) {
            $this->$property = $values[$property];
        }
    }
 }
?>