Created
June 1, 2012 11:55
-
-
Save kozo/2851566 to your computer and use it in GitHub Desktop.
staticなプロパティ一覧のデータをprint_aする
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function showStaticMember($className) { | |
$class = new ReflectionClass($className); | |
$propertyList = $class->getStaticProperties(); | |
print_a($propertyList); | |
return ; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment