Created
March 11, 2011 05:38
-
-
Save honda0510/865497 to your computer and use it in GitHub Desktop.
PHPメモ
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
// 全ての定義済の変数を表示する | |
exit( var_dump( get_defined_vars() ) ); | |
// 全ての定義済みの定数の名前と値を表示する | |
exit( var_dump( get_defined_constants(true) ) ); | |
// スーパーグローバル変数を表示する | |
phpinfo(INFO_VARIABLES); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment