<?php const INT = static function($x) {return (int)$x * (int)$x;}; echo (int)(" 123s "); // fatal error // echo ((int))(" 123s "); const ant = static function($x) {return (int)$x * (int)$x;}; echo (ant)(" 123s "); echo ((ant))(" 123s ");
You have javascript disabled. You will not be able to edit any code.