Skip to content

Instantly share code, notes, and snippets.

@co3k
Created April 13, 2010 08:39
Show Gist options
  • Save co3k/364428 to your computer and use it in GitHub Desktop.
Save co3k/364428 to your computer and use it in GitHub Desktop.
クラス定数チェッカー
<?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