Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Richard Heyes
Hi,

 Also, will PHP ever implement the Strict mode similar to Perl's 'using
 Strict'?

Don't know if it's similar having never used Pearl, but there's always
the E_STRICT error level.

?php
  error_reporting(E_STRICT);
?

-- 
Richard Heyes
HTML5 graphing: RGraph - www.rgraph.net (updated 5th September)
Lots of PHP and Javascript code - http://www.phpguru.org
50% reseller discount on licensing now available - ideal for web designers

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Richard Heyes
Hi (again),

 ?php
  error_reporting(E_STRICT);
 ?

This might work better:

?php
  error_reporting(E_ALL | E_STRICT);
?

-- 
Richard Heyes
HTML5 graphing: RGraph - www.rgraph.net (updated 5th September)
Lots of PHP and Javascript code - http://www.phpguru.org
50% reseller discount on licensing now available - ideal for web designers

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Kevin Waterson
On Sat, 2009-09-05 at 16:11 +0100, Richard Heyes wrote:
 Hi (again),
 
  ?php
   error_reporting(E_STRICT);
  ?
 
 This might work better:
 
 ?php
   error_reporting(E_ALL | E_STRICT);
 ?

E_STRICT is now part of E_ALL

Kevin


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Bobby Pejman
Very nice!  Use of E_STRICT notifies the user of deprecated functions.  Thanks 
for the note. :)

I read that E_ALL forces variable declaration, though I have yet to get that 
working in my code.

--Original Message--
From: Richard Heyes
Sender: richard.he...@gmail.com
To: Bobby Pejman
Cc: php-general@lists.php.net
Subject: Re: [PHP] PHP6 Stable Release Schedule
Sent: Sep 5, 2009 8:11 AM

Hi (again),

 ?php
  error_reporting(E_STRICT);
 ?

This might work better:

?php
  error_reporting(E_ALL | E_STRICT);
?

-- 
Richard Heyes
HTML5 graphing: RGraph - www.rgraph.net (updated 5th September)
Lots of PHP and Javascript code - http://www.phpguru.org
50% reseller discount on licensing now available - ideal for web designers



Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Richard Heyes
Hi,

 E_STRICT is now part of E_ALL

Oopsy. Shows how much PHP I do these days...

-- 
Richard Heyes
HTML5 graphing: RGraph - www.rgraph.net (updated 5th September)
Lots of PHP and Javascript code - http://www.phpguru.org
50% reseller discount on licensing now available - ideal for web designers

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread J DeBord
On Sat, Sep 5, 2009 at 6:19 PM, Richard Heyes rich...@php.net wrote:

 Hi,

  E_STRICT is now part of E_ALL


*In PHP 6
*

 Oopsy. Shows how much PHP I do these days...

 --
 Richard Heyes
 HTML5 graphing: RGraph - www.rgraph.net (updated 5th September)
 Lots of PHP and Javascript code - http://www.phpguru.org
 50% reseller discount on licensing now available - ideal for web designers

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] PHP6 Stable Release Schedule

2009-09-04 Thread Bobby Pejman
Hi,

Does anyone know when the stable release of PHP6 be ready for download?  I
hear there's a lot of goodies in version 6 including built-in Caching.
Yum.  Also, will PHP ever implement the Strict mode similar to Perl's 'using
Strict'?

Thanks,
Bobby


Re: [PHP] PHP6 Stable Release Schedule

2009-09-04 Thread Daniel Brown
On Fri, Sep 4, 2009 at 17:42, Bobby Pejmanbpej...@gmail.com wrote:
 Hi,

 Does anyone know when the stable release of PHP6 be ready for download?  I
 hear there's a lot of goodies in version 6 including built-in Caching.
 Yum.  Also, will PHP ever implement the Strict mode similar to Perl's 'using
 Strict'?

There is no date scheduled - or even well-estimated - for a stable
version of PHP6.  Best guesses are that, while it's not impossible to
say within the next year, mid- to late-2010 or even 2011 is a
prudent expectation.

-- 
/Daniel P. Brown
daniel.br...@parasane.net || danbr...@php.net
http://www.parasane.net/ || http://www.pilotpig.net/
Check out our great hosting and dedicated server deals at
http://twitter.com/pilotpig

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php