It was announced today on php.net that PHP 5.3 has been released!
This release includes many long awaited features in PHP such as:
- Namespaces
- Late static binding
- Lambda Functions and Closures
- Optional garbage collection for cyclic references
- NOWDOC syntax
- Ternary Short Cut (?:)
- Goto statement
- A number of new extensions
- Over 140 bugfixes
- And much more

Comments
- Gerwin
This make-error is produced:
"
ext/pgsql/.libs/pgsql.o: In function `zif_pg_lo_import':
/data/APLCOMP/temp/php-5.3.0/ext/pgsql/pgsql.c:3381: undefined reference to `lo_import_with_oid'
collect2: ld returned 1 exit status
make: *** [sapi/cli/php] Error 1
"
when compiled on AMD 64, Ubuntu 9.04
Mara
i tried in the first file
$q = new SplQueue();
$q->enqueue('something');
session_start();
$_SESSION['q'] = $q;
then in the second file
session_start();
print '<pre>';
print_r($_SESSION);
and basically it prints out
[q] => SplQueue Object
(
[flags:SplDoublyLinkedList:private] => 4
[dllist:SplDoublyLinkedList:private] => Array
(
)
)
i had a custom written queue object that did work properly, but thought it must be better to use something that is built in
?
http://ezinearticles.com/?id=2513600
http://ezinearticles.com/?id=2544517