Extended PHP
  • Getting started
  • Strings helpers
  • Enums helpers
  • Classes helpers
Powered by GitBook
On this page
  • class_namespace
  • class_implement
  • class_use
  • call
  • call_static
  • class_from

Classes helpers

List of functions that works for PHP classes.

PreviousEnums helpers

Last updated 8 months ago

class_namespace

Gets the namespace from class or object.

$class = App\Http\Controllers\MyController::class;

\OpenSoutheners\ExtendedPhp\Classes\class_namespace($class);
// 'App\Http\Controllers'

class_implement

Similarly than PHP's but finding a specific interface implemented on the object or class given.

class MyClass implements MyInterface {}

\OpenSoutheners\ExtendedPhp\Classes\class_implement(MyClass::class, MyInterface::class);
// true

class_use

Similarly than PHP's but finding a specific trait used on the object or class given.

class MyClass implements MyInterface {}

\OpenSoutheners\ExtendedPhp\Classes\class_use(MyClass::class, MyTrait::class);
// false

call

Call to the specified public method from class string or object with optional given arguments array.

class MyClass implements MyInterface
{
    public static function myStaticMethod(string $name)
    {
        return "greetings {$name}!";
    }

    public function myMethod(string $name)
    {
        return "hello {$name}!";
    }
}

\OpenSoutheners\ExtendedPhp\Classes\call(MyClass::class, 'myStaticMethod', ['user'], true);
// 'greetings user!'

\OpenSoutheners\ExtendedPhp\Classes\call(MyClass::class, 'myMethod', ['world']);
// 'hello world!'

call_static

Shortcut for `call` function used for call public static methods only.

class MyClass implements MyInterface
{
    public static function myStaticMethod(string $name)
    {
        return "greetings {$name}!";
    }
}

\OpenSoutheners\ExtendedPhp\Classes\call_static(MyClass::class, 'myStaticMethod', ['user']);
// 'greetings user!'

class_from

$class = App\Http\Controllers\MyController::class;
$classInstance = new $class;

\OpenSoutheners\ExtendedPhp\Classes\class_from($class);
// 'App\Http\Controllers\MyController'

\OpenSoutheners\ExtendedPhp\Classes\class_from($classInstance);
// 'App\Http\Controllers\MyController'

This is specially useful to get types using PHP generics types. Otherwise PHP's or should be used instead.

Gets class string from object or class. Similarly to PHP's but this one handles whenever string is sent.

class_implements
class_uses
array callable
call_user_func_array
get_class