PHP 8.5.0 Beta 1 available for testing

Voting

: max(eight, nine)?
(Example: nine)

The Note You're Voting On

giunta dot gaetano at gmail dot com
11 years ago
If you are using aliasing to import namespaced classes, take care that class_exists will not work using the short, aliased class name - apparently whenever a class name is used as string, only the full-namespace version can be used

use a\namespaced\classname as coolclass;

class_exists( 'coolclass' ) => false

<< Back to user notes page

To Top