Created
April 13, 2010 08:39
-
-
Save co3k/364428 to your computer and use it in GitHub Desktop.
クラス定数チェッカー
This file contains hidden or 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
<?php | |
$r = new ReflectionClass('PDO'); | |
$consts = $r->getConstants(); | |
var_dump(array_keys($consts, 0)); // 定数の値が 0 のクラス定数名を引っ張り出す |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment