Skip to content

Instantly share code, notes, and snippets.

@phpfiddle
Created October 15, 2014 15:51
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 phpfiddle/1ea75f2add0de4df5368 to your computer and use it in GitHub Desktop.
Save phpfiddle/1ea75f2add0de4df5368 to your computer and use it in GitHub Desktop.
[ Posted by Todd Coleman ] issettestHAC
<?php
$object = new StdClass;
$object->thor = false;
//$object->lock = true;
if (!$object->thor && !isset($object->lock))
echo "Show Destroy";
else
echo "Hide Destroy";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment