Created
April 15, 2016 20:11
-
-
Save stefano-rs/6d82975731abc4d5734257dffa880c47 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$ex = new stdClass; | |
if(property_exists($ex, "nome_propiedade")){ | |
echo 'exite'; | |
} else { | |
echo 'nao existe' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment