Skip to content

Instantly share code, notes, and snippets.

@honda0510
Created March 11, 2011 05:38
Show Gist options
  • Save honda0510/865497 to your computer and use it in GitHub Desktop.
Save honda0510/865497 to your computer and use it in GitHub Desktop.
PHPメモ
// 全ての定義済の変数を表示する
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