Skip to content

Instantly share code, notes, and snippets.

@grafxflow
Forked from vielhuber/index.php
Created March 7, 2026 17:54
Show Gist options
  • Select an option

  • Save grafxflow/480331ac5a73ae491550c1b2d77082e9 to your computer and use it in GitHub Desktop.

Select an option

Save grafxflow/480331ac5a73ae491550c1b2d77082e9 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