Skip to content

Instantly share code, notes, and snippets.

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