CES: Worse products through software
hypercritical.co1 ポイント投稿者 Firehed0 コメント
@$arr['key']
is the same as $er = error_reporting(0);
$arr['$key'];
error_reporting($er);
unset($er);
Probably more importantly is that the internal errors are still being raised, there's just additional comparison logic within the PHP engine to suppress them internally.
This is a PHP bug: http://www.networkworld.com/news/2011/010511-php-floating-po...
Everything else? Bad code.