Please answer this simple SPAM challenge: max(two, seven)? (Example: nine)
Reflecting an alias will give you a reflection of the resolved class.<?phpclass X { }class_alias('X','Y');class_alias('Y','Z');$z = new ReflectionClass('Z');echo $z->getName(); // X?>
<< Back to user notes page