Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Returns the name of the class of an object
<?php get_class(object $object = ?): string
<?php                                 if (isset($one['args'])) {

                                    foreach ($one['args'] as &$arg) {

                                        if ($arg instanceof \Closure) {

                                            $arg = 'Object(' . \get_class($arg) . ')';

                                        }

                                    }

                                }
<?php                     if (isset($one['args'])) {

                        foreach ($one['args'] as &$arg) {

                            if ($arg instanceof \Closure) {

                                $arg = 'Object(' . \get_class($arg) . ')';

                            }

                        }

                    }