Skip to content

Instantly share code, notes, and snippets.

@EduardoSP6
Last active January 8, 2025 16:23
Show Gist options
  • Save EduardoSP6/a340d9abc8df018e48f29c78fe4f9d61 to your computer and use it in GitHub Desktop.
Save EduardoSP6/a340d9abc8df018e48f29c78fe4f9d61 to your computer and use it in GitHub Desktop.
Method to convert object properties to array in PHP
<?php
public function __toArray(): array
{
return call_user_func('get_object_vars', $this);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment