w3Answers.com
@ is used in php to hide error msg for ex: <? @ function msg(){ //this fun displays error; echo "hide error msg" } ?>
More information about formatting options
Tweet
Stay informed on our latest news!
why we use @ in php
@ is used in php to hide error msg
for ex:
<?
@ function msg(){
//this fun displays error;
echo "hide error msg"
}
?>