Download the PHP package gisostallenberg/php-to-7-aid without Composer
On this page you can find all versions of the php package gisostallenberg/php-to-7-aid. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download gisostallenberg/php-to-7-aid
More information about gisostallenberg/php-to-7-aid
Files in gisostallenberg/php-to-7-aid
Package php-to-7-aid
Short Description Tool to find and possibly fix backward incompatible changes in your existing codebase when upgrading to or preparing for PHP7
License MIT
Informations about the package php-to-7-aid
phpTo7aid
Tool to find, and possibly fix, backward incompatible changes in your existing codebase when upgrading to or preparing for PHP7
About
The goal of phpTo7aid is to identify PHP 5 code that will not work in PHP 7. It tries to aid you as much as possible in resolving this issues, by either providing the exact solution or giving hints on how to solve the issue.
Status
Please note that this version is still in development. See Versioning below or SemVer: "Major version zero (0.y.z) is for initial development. Anything may change at any time. The public API should not be considered stable."
Versioning
phpTo7aid uses Semantic Versioning 2 as guideline for new versions.
License
phpTo7aid is licensed under the MIT License - see the LICENSE
file for details.
Authors
Installing
Using composer.
composer require gisostallenberg/php-to-7-aid
Run directly
wget https://github.com/gisostallenberg/php-to-7-aid/raw/master/php-to-7-aid.phar -O php-to-7-aid.phar; php php-to-7-aid.phar run
Backward Incompatible Changes in PHP 7
See PHP 7 UPGRADING
Implemented
Will not be implemented (including reason)
Not yet implemented
- Indirect variable, property and method references are now interpreted with left-to-right semantics.
- The global keyword now only accepts simple variables
- Parentheses around variables or function calls no longer have any influence on behavior
- Array elements or object properties that are automatically created during by-reference assignments will now result in a different order
- list() will no longer assign variables in reverse order
- Empty list() assignments are no longer allowed
- list() no longer supports unpacking strings
- Iteration with foreach() no longer has any effect on the internal array pointer
- When iterating arrays by-value, foreach will now always operate on a copy of the array, as such changes to the array during iteration will not influence iteration behavior
- When iterating arrays by-reference, modifications to the array will continue to influence the iteration.
- Iteration of plain (non-Traversable) objects by-value or by-reference will behave like by-reference iteration of arrays
- It is no longer possible to define two function parameters with the same name.
- The func_get_arg() and func_get_args() functions will no longer return the original value that was passed to a parameter and will instead provide the current value (which might have been modified).
- Exception backtraces will no longer display the original value that was passed to a function and show the modified value instead
- Invalid octal literals (containing digits larger than 7) now produce compile errors.
- Bitwise shifts by negative numbers will now throw a warning and return false
- Left bitwise shifts by a number of bits beyond the bit width of an integer will always result in 0
- Right bitwise shifts by a number of bits beyond the bit width of an integer will always result in 0 or -1 (depending on sign)
- Strings that contain hexadecimal numbers are no longer considered to be numeric and don't receive special treatment anymore.
- Due to the addition of the Unicode Codepoint Escape Syntax for double-quoted strings and heredocs, "\u{" followed by an invalid sequence will now result in an error
- There are now two exception classes: Exception and Error. Both classes implement a new interface Throwable.
- Some fatal errors and recoverable fatal errors now throw an Error instead
- Parser errors now generate a ParseError that extends Error
- Constructors of internal classes will now always throw an exception on failure
- The error level of some E_STRICT notices has been changed
- Removed support for static calls to non-static calls form an incompatible $this context.
- It is no longer possible to use the following class, interface and trait names (case-insensitive): bool, int, float, string, null, false, true
- The following class, interface and trait names are now reserved for future use, but do not yet throw an error when used: resource, object, mixed, numeric
- The yield language construct no longer requires parentheses when used in an expression context
- Removed ASP (<%) and script (