rfc:normalize_inc_dec

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
rfc:normalize_inc_dec [2013/12/19 09:28] – created datibbawrfc:normalize_inc_dec [2018/06/18 10:17] (current) – This RFC appears to be inactive cmb
Line 1: Line 1:
  
-====== PHP RFC: Your Title Here ====== +====== PHP RFC: Normalize increment and decrement operators ====== 
-  * Version: 0.1+  * Version: 0.2
   * Date: 2013-12-19   * Date: 2013-12-19
-  * Author:  +  * Author: Tjerk Meesters (datibbaw) 
-  * Status: Draft+  * Status: Inactive
   * First Published at: https://wiki.php.net/rfc/normalize_inc_dec   * First Published at: https://wiki.php.net/rfc/normalize_inc_dec
  
-This is a suggested template for PHP Request for Comments (RFCs). Change this template to suit your RFC.  Not all RFCs need to be tightly specified.  Not all RFCs need all the sections below. 
-Read https://wiki.php.net/rfc/howto carefully! 
- 
-You RFC should move PHP forward. As [[http://news.php.net/php.internals/66065|said by Zeev Suraski]] "Consider only features which have significant traction to a 
-large chunk of our userbase, and not something that could be useful in some 
-extremely specialized edge cases [...] Make sure you think about the full context, the huge audience out there, the consequences of  making the learning curve steeper with 
-every new feature, and the scope of the goodness that those new features bring." 
 ===== Introduction ===== ===== Introduction =====
  
-The elevator pitch for the RFC.+The current behaviour of increment and decrement operators is not very intuitive:
  
-===== Proposal =====+<code php> 
 +// booleans 
 +$a false; ++$a; // bool(false) 
 +$a true; --$a; // bool(true)
  
-All the features and examples of the proposal.+// null values 
 +$a = null; --$a; // null 
 +$a = null; ++$a; // int(1)
  
-To [[http://news.php.net/php.internals/66051|paraphrase Zeev Suraski]], explain hows the proposal brings substantial value to be considered +// empty strings 
-for inclusion in one of the world's most popular programming languages.+$a = ''; ++$a; // string(1) "1"
  
-Remember that the RFC contents should be easily reusable in the PHP Documentation. +// non-numeric strings 
-===== Backward Incompatible Changes =====+$a '12d9';  
 +++$a; // string(4) "12e0" 
 +++$a; // float(13) 
 +</code>
  
-What breaks, and what is the justification for it?+===== Proposal =====
  
-===== Proposed PHP Version(s=====+The proposal is: 
 +  - always treat boolean and null types as an integer, but raise a warning. 
 +  - deprecate alphanumeric increment and introduce ''str_inc()'' and ''str_dec()''.
  
-List the proposed PHP versions that the feature will be included in.  Use relative versions such as "next PHP 5.x" or "next PHP 5.x.y".+==== Operation on bool / null ====
  
-===== SAPIs Impacted =====+<code php> 
 +// booleans 
 +$a false;  
 +++$a; // int(1) + warning 
 +++$a; // int(2) 
 +$a true;  
 +--$a; // int(0) + warning 
 +--$a; // int(-1)
  
-Describe the impact to CLI, Development web server, embedded PHP etc.+// null values 
 +$a = null; --$a; // int(-1) + warning 
 +$a = null; ++$a; // int(1) + warning 
 +</code>
  
-===== Impact to Existing Extensions =====+==== Operation on alphanumeric strings ====
  
-Will existing extensions be affected?+<code php> 
 +// non-numeric strings 
 +$a = '12d9';  
 +++$a; // string(4) "12e0" + Notice: String increment is deprecated, use str_inc() instead in php shell code on line 1 
 +++$a; // float(13) 
 +</code>
  
-===== New Constants =====+Additionally, it makes two new string functions available:
  
-Describe any new constants so they can be accurately and comprehensively explained in the PHP documentation.+  * ''str_inc($str)'' - to perform the current string increments. 
 +  * ''str_dec($str)'' - the string decrement.
  
-===== php.ini Defaults =====+===== Backward Incompatible Changes =====
  
-If there are any php.ini settings then list: +Incrementing ''null'' will now raise a warning; incrementing alphanumeric strings will raise a deprecation notice
-  * hardcoded default values + 
-  * php.ini-development values +===== Proposed PHP Version(s) ===== 
-  php.ini-production values+ 
 +**PHP 7**
  
 ===== Open Issues ===== ===== Open Issues =====
  
-Make sure there are no open issues when the vote starts!+None.
  
 ===== Unaffected PHP Functionality ===== ===== Unaffected PHP Functionality =====
  
-List existing areas/features of PHP that will not be changed by the RFC. +The changes do not affect the following data types: 
- +  * ''array'' 
-This helps avoid any ambiguity, shows that you have thought deeply about the RFC's impact, and helps reduces mail list noise. +  * ''int'
- +  * ''float'' 
-===== Future Scope ===== +  * ''object'' 
- +  * ''resource''
-This sections details areas where the feature might be improved in future, but that are not currently proposed in this RFC.+
  
 ===== Proposed Voting Choices ===== ===== Proposed Voting Choices =====
  
-Include these so readers know where you are heading and can discuss the proposed voting options.+Yay or nay.
  
 ===== Patches and Tests ===== ===== Patches and Tests =====
  
-Links to any external patches and tests go here.+Coming soon ...
  
-If there is no patch, make it clear who will create a patch, or whether a volunteer to help with implementation is needed.+===== Implementation =====
  
-Make it clear if the patch is intended to be the final patch, or is just a prototype.+N/A
  
-===== Implementation =====+===== References =====
  
-After the project is implemented, this section should contain  +[[https://github.com/php/php-src/pull/547|Pull Request]]
-  the version(s) it was merged to +
-  - a link to the git commit(s) +
-  - a link to the PHP manual entry for the feature+
  
-===== References =====+The competing proposal:
  
-Links to external references, discussions or RFCs+[[alpanumeric_decrement|Alphanumeric Decrement]]
  
 ===== Rejected Features ===== ===== Rejected Features =====
  
 Keep this updated with features that were discussed on the mail lists. Keep this updated with features that were discussed on the mail lists.
rfc/normalize_inc_dec.1387445334.txt.gz · Last modified: 2017/09/22 13:28 (external edit)