Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Restoration/608e1e694a4bcc66cd3ba6fda29078d6 to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/608e1e694a4bcc66cd3ba6fda29078d6 to your computer and use it in GitHub Desktop.
定義済みの関数があるかを調べる
<?php
define('TEST','PHP逆引きレシピ');
//定義済みの関数があるかを調べる
print_r(get_defined_constants(true));
//定義済みかどうかを調べる
if(defined('TEST')){
echo "定数TESTは定義されています。";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment