Published!
PHP 8.2 is a major version update of the PHP language.
It includes read-only classes, null, false, and true as independent types, discarding dynamic attributes, and improving performance.
View the supported versions page to learn more about the support lifecycle for each PHP version.
07 Aug 2008
03 Jan 2008
03 May 2007
01 Mar 2007
14 Feb 2007
17 Aug 2006
03 Aug 2006
11 Jan 2006
31 Oct 2005
11 Jul 2005
31 Mar 2005
14 Dec 2004
22 Sep 2004
13 Jul 2004
03 Jun 2004
15 Apr 2004
26 Mar 2004
03 Nov 2003
25 Aug 2003
29 May 2003
17 Feb 2003
27 Dec 2002
//Globally enables the ticks modifier for the whole program declare (ticks=1); //Enables the ticks modifier for just the lexical block containing //'statement'. declare (ticks=1) { statement; }
06 Sep 2002
22 Jul 2002
13 May 2002
22 Apr 2002
<?php
$wfds=$rfds=array($sock1, $sock2, $sock3, $sock7);
$r=socket_select($rfds, $wfds, NULL, 1);
print 'Ready to read: '; var_dump($rfds);
?>
27 Feb 2002
26 Dec 2001
10 Dec 2001
23 Jun 2001
30 Apr 2001
19 Dec 2000
Allow for three expression types to be sent to functions which are requesting the function argument to be passed by reference (only c. was previously supported): a. func(new myclass()); b. func(func2()); where func2() returns a reference, i.e. is defined as function &func2(...) { ... } c. func($var); where func() is defined as function func(&$var) {...} You CAN'T count on any other expressions to be passable by reference. (Andi, Zend Engine)
11 Oct 2000
29 Aug 2000
28 Jun 2000
22 May 2000