Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have searched Stackoverflow and Google and can't seem to find a reference (exhaustive or otherwise) that lists all of PHP's built-in objects such as DateTime. Does anyone have any links to something of this nature, I would appreciate it, thank you.

share|improve this question

2 Answers

You can use get_declared_classes(). Depending on how many extensions you have, a possible output could be:

Array
(
    [0] => stdClass
    [1] => Exception
    [2] => ErrorException
    [3] => DateTime
    [4] => DateTimeZone
    [5] => ReflectionException
    [6] => Reflection
    [7] => ReflectionFunctionAbstract
    [8] => ReflectionFunction
    [9] => ReflectionParameter
    [10] => ReflectionMethod
    [11] => ReflectionClass
    [12] => ReflectionObject
    [13] => ReflectionProperty
    [14] => ReflectionExtension
    [15] => RecursiveIteratorIterator
    [16] => IteratorIterator
    [17] => FilterIterator
    [18] => RecursiveFilterIterator
    [19] => ParentIterator
    [20] => LimitIterator
    [21] => CachingIterator
    [22] => RecursiveCachingIterator
    [23] => NoRewindIterator
    [24] => AppendIterator
    [25] => InfiniteIterator
    [26] => RegexIterator
    [27] => RecursiveRegexIterator
    [28] => EmptyIterator
    [29] => ArrayObject
    [30] => ArrayIterator
    [31] => RecursiveArrayIterator
    [32] => SplFileInfo
    [33] => DirectoryIterator
    [34] => RecursiveDirectoryIterator
    [35] => SplFileObject
    [36] => SplTempFileObject
    [37] => LogicException
    [38] => BadFunctionCallException
    [39] => BadMethodCallException
    [40] => DomainException
    [41] => InvalidArgumentException
    [42] => LengthException
    [43] => OutOfRangeException
    [44] => RuntimeException
    [45] => OutOfBoundsException
    [46] => OverflowException
    [47] => RangeException
    [48] => UnderflowException
    [49] => UnexpectedValueException
    [50] => SplObjectStorage
    [51] => __PHP_Incomplete_Class
    [52] => php_user_filter
    [53] => Directory
)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.