Zend 2 will affect PHP-GTK code !!

<?
$object = & new GtkWindow();
//In the new Zend Engine, the & will cause a parse error and is not required. eg.
$object = new GtkWindow();
?>