what does it mean the symbol "@" in php and what's the meaning of the arrow "->" in general and in this case ?
Code: Select all
@$GLOBALS['ext_File']->chmod( $abs, 0644 );Moderator: General Moderators
Code: Select all
@$GLOBALS['ext_File']->chmod( $abs, 0644 );Code: Select all
$GLOBALS['ext_File']->chmod( $abs, 0644 );