Skip to content

Instantly share code, notes, and snippets.

@yokotak0527
Last active December 11, 2015 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yokotak0527/4671567 to your computer and use it in GitHub Desktop.
Save yokotak0527/4671567 to your computer and use it in GitHub Desktop.
PHP で無いクエリを取ってこようとするとエラーが返るので、issetでセットされているかNULLではないかをチェックして処理を変える。
$home = isset($_GET['home']) ? $_GET['home'] : NULL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment