I have some one question for this code
self::$connect = @new PDO(
"mysql:host=$host;dbname=$databes",
$user,
$password,
self::$setting
);
What exactly does the @ symbol in front of new mean?
I try to find in the manuals why @ is written when creating a PDO and I still can't find the answer.
Very thanks for answer.