function _sig_and() { $a='' and $b=''; } nb::benchmark('_sig_and',9999999);
nb::benchmark(); exit;
function _1() { date_default_timezone_set('Europe/London'); } nb::benchmark('_1');
-function _2() { error_reporting(E_ALL | E_STRICT | E_NOTICE); } nb::benchmark('_2');
+# NB 12.10.25 function _2() { error_reporting(E_ALL | E_STRICT | E_NOTICE); } nb::benchmark('_2');
+function _2() { error_reporting(E_ALL | E_NOTICE); } nb::benchmark('_2');
function _3() { ini_set('include_path','.'); } nb::benchmark('_3');
function _4() { getenv('zaza'); } nb::benchmark('_4');
function _5() { $v='Europe/London'; } nb::benchmark('_5');
*/
#define('NB_EOL','');
#define('NB_PROD',true);
-if (empty($_SERVER['PROD'])) error_reporting(E_ALL | E_STRICT | E_NOTICE);
+# NB 12.10.25 if (empty($_SERVER['PROD'])) error_reporting(E_ALL | E_STRICT | E_NOTICE);
+if (empty($_SERVER['PROD'])) error_reporting(E_ALL | E_NOTICE);
// Base lib
require_once(realpath(dirname(__FILE__).'/nb.php'));