Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Last active August 11, 2023 10:24
Show Gist options
  • Save vielhuber/260eec605196d2f9f83b86c781345a18 to your computer and use it in GitHub Desktop.
Save vielhuber/260eec605196d2f9f83b86c781345a18 to your computer and use it in GitHub Desktop.
get class model name of object #laravel #php
<?php
get_class($obj) // App\Models\Foo
class_basename($obj) // Foo
(new ReflectionClass($obj))->getShortName() // Foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment