Skip to content

Instantly share code, notes, and snippets.

@cjzeven
Last active May 12, 2017 16:54
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 cjzeven/c426a822e1469b5ef269ebc6a3e6575a to your computer and use it in GitHub Desktop.
Save cjzeven/c426a822e1469b5ef269ebc6a3e6575a to your computer and use it in GitHub Desktop.
<?php
$data = null;
if (isset($data)) {
echo 'Data is set.';
} else {
echo 'Data is not set.';
}
// Hasil:
// Data is not set.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment