One of the new features in PHP 5.3 is a construct called declare(). Support for this needs to be added to the bundle.
Examples from http://php.net/declare
<?php
declare(ticks=1) {
// entire script here
}
// or you can use this:
declare(ticks=1);
declare(encoding='ISO-8859-1');
One of the new features in PHP 5.3 is a construct called
declare(). Support for this needs to be added to the bundle.Examples from http://php.net/declare