====== PHP RFC: Binary String Deprecation ====== * Version: 0.2 * Date: 2016-12-11 * Author: Pedro Magalhães, mail at pmmaga dot net * Status: Declined * First Published at: http://wiki.php.net/rfc/binary_string_deprecation ===== Introduction ===== In version 5.2.1, the ''b'' prefix and the ''(binary)'' cast were [[http://php.net/manual/en/language.types.type-juggling.php|introduced for forward compatibility]] with the PHP-6 project. However, that project never came to be and no one can tell if it will ever be the chosen approach in a possible future attempt to implement binary strings. Yet, these are still accepted by the language scanner although ignored from then on. ===== Proposal ===== This RFC aims to deprecate the prefix as it produces no effect on the string literal and the binary cast because it is the same as casting to string. The proposed implementation consists in throwing a ''E_DEPRECATED'' during compilation when the prefix or the cast are used. At a later major version of PHP, the support for these should be removed. With the implementation of this RFC, the following code: Executed on an environment with the error level including ''E_DEPRECATED'' will produce: Deprecated: The usage of the 'b' prefix is deprecated in ... on line 3 Deprecated: The usage of the binary cast is deprecated in ... on line 4 Goodbye, world! <- Equivalent to (string) Furthermore, tests and test iterations specifically intended for binary strings are also removed as they aim at a functionality that doesn't exist. Finally, this RFC also includes a patch for the documentation to remove the reference to this cast in the [[http://php.net/manual/en/language.types.type-juggling.php|Type Juggling page]] and another for the language specification. ===== Backward Incompatible Changes ===== Scripts where the prefix or the cast are used will now throw a ''E_DEPRECATED'' notice during compilation. Once the deprecation phase is over and the prefix and cast are removed, these scripts will stop compiling. ===== Proposed PHP Version(s) ===== The proposed target version is the next PHP-7.x ===== RFC Impact ===== ==== To Existing Extensions ==== === To PHAR === This deprecation and subsequent removal may have a greater impact given that PHAR archives using the default stub and generated in a version of PHP prior to 7.1 include ''(binary)'' casts. ===== Future Scope ===== In the next PHP major version the deprecation phase should end and the prefix and cast should be removed. ===== Proposed Voting Choices ===== This RFC requires a 2/3 majority. Voting starts on 2017-02-03 13:00 UTC and closes on 2017-02-20 20:00 UTC. * Yes * No ===== Patches and Tests ===== This RFC is implemented by the following patches: * Implementation: [[https://github.com/php/php-src/pull/2322]] * Language Specification: [[https://github.com/php/php-langspec/pull/188]] * Documentation: //Patch was deleted. It removed the mention of the prefix from the type-juggling page.// ===== References ===== This deprecation is also proposed in [[rfc:deprecations_php_7_2|PHP RFC: Deprecations for PHP 7.2]]. The reason for a separate RFC is the impact on the PHAR extension.