PHP6 Stable Release Schedule

PHP6 Stable Release Schedule

am 04.09.2009 23:42:54 von Bpejman

--0016e645f8c2f7de520472c76129
Content-Type: text/plain; charset=ISO-8859-1

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

--0016e645f8c2f7de520472c76129--

Re: PHP6 Stable Release Schedule

am 04.09.2009 23:56:56 von Daniel Brown

On Fri, Sep 4, 2009 at 17:42, Bobby Pejman wrote:
> Hi,
>
> Does anyone know when the stable release of PHP6 be ready for download? =
=A0I
> hear there's a lot of goodies in version 6 including built-in Caching.
> Yum. =A0Also, 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.

--=20

daniel.brown@parasane.net || danbrown@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

Re: PHP6 Stable Release Schedule

am 05.09.2009 10:11:45 von 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.

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: PHP6 Stable Release Schedule

am 05.09.2009 17:11:34 von Richard Heyes

Hi (again),

> > =A0error_reporting(E_STRICT);
> ?>

This might work better:

error_reporting(E_ALL | E_STRICT);
?>

--=20
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: PHP6 Stable Release Schedule

am 05.09.2009 17:57:27 von Kevin Waterson

On Sat, 2009-09-05 at 16:11 +0100, Richard Heyes wrote:
> Hi (again),
>
> > > > error_reporting(E_STRICT);
> > ?>
>
> This might work better:
>
> > 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: PHP6 Stable Release Schedule

am 05.09.2009 18:06:42 von Bpejman

VmVyeSBuaWNlISAgVXNlIG9mIEVfU1RSSUNUIG5vdGlmaWVzIHRoZSB1c2Vy IG9mIGRlcHJlY2F0
ZWQgZnVuY3Rpb25zLiAgVGhhbmtzIGZvciB0aGUgbm90ZS4gOikNCg0KSSBy ZWFkIHRoYXQgRV9B
TEwgZm9yY2VzIHZhcmlhYmxlIGRlY2xhcmF0aW9uLCB0aG91Z2ggSSBoYXZl IHlldCB0byBnZXQg
dGhhdCB3b3JraW5nIGluIG15IGNvZGUuDQoNCi0tLS0tLU9yaWdpbmFsIE1l c3NhZ2UtLS0tLS0N
CkZyb206IFJpY2hhcmQgSGV5ZXMNClNlbmRlcjogcmljaGFyZC5oZXllc0Bn bWFpbC5jb20NClRv
OiBCb2JieSBQZWptYW4NCkNjOiBwaHAtZ2VuZXJhbEBsaXN0cy5waHAubmV0 DQpTdWJqZWN0OiBS
ZTogW1BIUF0gUEhQNiBTdGFibGUgUmVsZWFzZSBTY2hlZHVsZQ0KU2VudDog U2VwIDUsIDIwMDkg
ODoxMSBBTQ0KDQpIaSAoYWdhaW4pLA0KDQo+IDw/cGhwDQo+IKBlcnJvcl9y ZXBvcnRpbmcoRV9T
VFJJQ1QpOw0KPiA/Pg0KDQpUaGlzIG1pZ2h0IHdvcmsgYmV0dGVyOg0KDQo8 P3BocA0KICBlcnJv
cl9yZXBvcnRpbmcoRV9BTEwgfCBFX1NUUklDVCk7DQo/Pg0KDQotLSANClJp Y2hhcmQgSGV5ZXMN
CkhUTUw1IGdyYXBoaW5nOiBSR3JhcGggLSB3d3cucmdyYXBoLm5ldCAodXBk YXRlZCA1dGggU2Vw
dGVtYmVyKQ0KTG90cyBvZiBQSFAgYW5kIEphdmFzY3JpcHQgY29kZSAtIGh0 dHA6Ly93d3cucGhw
Z3VydS5vcmcNCjUwJSByZXNlbGxlciBkaXNjb3VudCBvbiBsaWNlbnNpbmcg bm93IGF2YWlsYWJs
ZSAtIGlkZWFsIGZvciB3ZWIgZGVzaWduZXJzDQoNCg==

Re: PHP6 Stable Release Schedule

am 05.09.2009 18:19:13 von 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: PHP6 Stable Release Schedule

am 05.09.2009 18:36:39 von J DeBord

--001485e9a605bf1bad0472d73950
Content-Type: text/plain; charset=UTF-8

On Sat, Sep 5, 2009 at 6:19 PM, Richard Heyes 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
>
>

--001485e9a605bf1bad0472d73950--