Php/docs/migration52.other
来自菜鸟教程
Other Enhancements
- Improved memory manager and increased default memory limit. The new memory manager allocates less memory and works faster than the previous incarnation. It allocates memory from the system in large blocks, and then manages the heap by itself. The
memory_limit
value inphp.ini
is checked, not for eachemalloc()
call (as before), but for actual blocks requested from the system. This means thatmemory_limit
is far more accurate than it used to be, since the old memory manager didn't calculate all the memory overhead used by themalloc
library. Thanks to this new-found accuracy memory usage may appear to have increased, although actually it has not. To accommodate this apparent increase, the defaultmemory_limit
setting was also increased - from 8 to 16 megabytes. - Added support for constructors in interfaces to force constructor signature checks in implementations. Starting with PHP 5.2.0, interfaces can have constructors. However, if you choose to declare a constructor in an interface, each class implementing that interface MUST include a constructor with a signature matching that of the base interface constructor. By 'signature' we mean the parameter and return type definitions, including any type hints and including whether the data is passed by reference or by value.