Tuesday, October 7, 2025
HomeLanguagesPHP ReflectionClass getTraits() Function

PHP ReflectionClass getTraits() Function

The ReflectionClass getTraits() function is an inbuilt function in PHP that is used to return an array of traits used by the user-defined class.
 

Syntax: 

array ReflectionClass getTraits( void )

Parameters: This function does not accept any parameters.
Return Value: This function returns an array of traits used by the user-defined class.
Below programs illustrate the ReflectionClass getTraits() function in PHP:
 

Program 1: 

php




<?php
 
// Defining a trait class
trait Company {
    public function neveropen() {
    }
}
 
// Defining a user-defined class Department
class Department{
    use Company {
    }
}
 
// Using ReflectionClass over the
// user-defined class Department
$obj = new ReflectionClass('Department');
 
// Calling the getTraits() function
$A = $obj->getTraits();
 
// Getting an array of the traits
var_dump($A);
?>


Output: 
 

array(1) {
  ["Company"]=>
  object(ReflectionClass)#2 (1) {
    ["name"]=>
    string(7) "Company"
  }
}

Program 2: 

php




<?php
  
// Defining a user-defined class Department
class Department{
}
  
// Using ReflectionClass over the
// user-defined class Department
$obj = new ReflectionClass('Department');
  
// Calling the getTraits() function and
// getting an array of the traits
var_dump($obj->getTraits());
?>


Output: 
 

array(0) {
}

Reference: https://secure.php.net/manual/en/reflectionclass.gettraits.php
 

RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS