0

Can you please tell me the difference between $variable and @$variable in php

<?php
 curl function abc
{
 get information of url and return information string
}
$html=abc();
$doc=DOMDocument();
@$doc->LoadHTML($html); 
?>

here if we take normal variable it gives error why its so and whats the difference

4

4 に答える 4