Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/11/21 in all areas

  1. public function __construct($parameters = null) { if (! $parameters) { return; } if ($parameters instanceof stdClass) { $parameters = get_object_vars($parameters); } foreach ($parameters as $property => $value) { if (property_exists($this, $property)) { $this->$property = $value; } } }
    0 points
×
×
  • Create New...