Am 07.06.2013 01:58, schrieb Stas Malyshev:
> Hello!
>
> The PHP development team announces the immediate availability of PHP
> 5.4.16 and PHP 5.3.26. These releases fix about 15 bugs, including
> CVE-2013-2110. All users of PHP are encouraged to upgrade to PHP 5.4.16.
> PHP 5.3.26 is recommended
Hello!
The PHP development team announces the immediate availability of PHP
5.4.16 and PHP 5.3.26. These releases fix about 15 bugs, including
CVE-2013-2110. All users of PHP are encouraged to upgrade to PHP 5.4.16.
PHP 5.3.26 is recommended for those wishing to remain on the 5.3 series.
For sour
We have Traits. How about simply:
trait Accessors
{
public function __get($name) {
$fn = "get_$name";
return method_exists($this, $fn)
? $this->$fn()
: $this->_get($name);
}
public function __set($name, $value) {
$fn = "get_$name";
Hi Internals,
We juste tagged and release PHP 5.5.0 RC3. It fixes some bugs against RC2
code.
You'll find details in the NEWS file.
The packages can be found at:
http://downloads.php.net/dsp
and windows packages at
http://windows.php.net/qa
Please test the release carefully and report any
hi!
The fix for #53437 is around for some time now. It full fills the
requirements described by Derick when we discussed the possible fixes.
Unless there are strong objections in the next couple of days, I will
ask Anatol to apply it on Monday. This is the last remaining crash in
5.3/4 (already a
On Jun 6, 2013 6:03 PM, "Derick Rethans" wrote:
>
> On Thu, 6 Jun 2013, Pierre Joye wrote:
>
> > The fix for #53437 is around for some time now. It full fills the
> > requirements described by Derick when we discussed the possible fixes.
> >
> > Unless there are strong objections in the next coupl
On Thu, 6 Jun 2013, Pierre Joye wrote:
> The fix for #53437 is around for some time now. It full fills the
> requirements described by Derick when we discussed the possible fixes.
>
> Unless there are strong objections in the next couple of days, I will
> ask Anatol to apply it on Monday. This