From 4ac782ae5785a4649b4d953a3f6c8e43e9ffee1f Mon Sep 17 00:00:00 2001 From: Jason Greene Date: Wed, 31 Jul 2002 22:43:26 +0000 Subject: [PATCH] Fix my broken entry --- NEWS | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 00f61acff9..e6d069ba95 100644 --- a/NEWS +++ b/NEWS @@ -1,8 +1,16 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ? ? ??? 2002, Version 4.3.0 -- Added the ability to globaly declare a compiler modifier globally by using an empty statement - i.e. (Jason) +- Added the ability for declare() compiler modifications to occur globally + by using an empty statement. (Jason, Zend Engine) + i.e. + //Globally enables the ticks modifier for the whole program + declare (ticks=1); + + //Enables the ticks modifier for just the lexical block containing "statement" + deckare (ticks=1) { + statement; + } - Bring strtotime() "next" keyword handling in line with documentation and its glibc cousin. (Rasmus) - Fixed str_rot13() to not mangle source string. (Rasmus) -- 2.40.0