Skip to content

Instantly share code, notes, and snippets.

@joram77
Created January 19, 2021 21:06
Show Gist options
  • Save joram77/bd4ae0f640ce81d148045f78cab2cb2b to your computer and use it in GitHub Desktop.
Save joram77/bd4ae0f640ce81d148045f78cab2cb2b to your computer and use it in GitHub Desktop.
function setObjectPropertiesFromArray(Entity $item): void
{
foreach ($_POST as $var => $value) {
if (is_callable(array($item, "set" . ucfirst($var)))) {
$item->{"set" . ucfirst($var)}($value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment