rfc:skipparams

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
rfc:skipparams [2012/05/11 23:15] – [Issues raised] stasrfc:skipparams [2017/09/22 13:28] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Skipping optional parameters for functions ====== ====== Skipping optional parameters for functions ======
-  * Version: 1.0 +  * Version: 3.0 
-  * Date: 2012-04-13+  * Date: 2015-01-01
   * Author: Stas Malyshev <stas@php.net>   * Author: Stas Malyshev <stas@php.net>
-  * Status: Under Discussion +  * Status: Declined 
-  * Implementation: https://github.com/smalyshev/php-src/tree/skip_params +  * Implementation: https://github.com/smalyshev/php-src/tree/skip_params7
 ===== Introduction ===== ===== Introduction =====
  
-As PHP does not have named parameter supportvery common for function is to have many optional arguments, like this:+In PHP, it is very common for function is to have many optional arguments, like this:
  
      function create_query($where, $order_by, $join_type='', $execute = false, $report_errors = true)      function create_query($where, $order_by, $join_type='', $execute = false, $report_errors = true)
Line 19: Line 18:
 The proposal is to allow skipping optional arguments in a call, thus making them assume default values as they do when they are not provided, like this: The proposal is to allow skipping optional arguments in a call, thus making them assume default values as they do when they are not provided, like this:
  
-      create_query("deleted=0", "name",,, /*report_errors*/ true);+      create_query("deleted=0", "name", defaultdefault, /*report_errors*/ true);
  
 This means that $join_type and $execute are going to use defaults. This means that $join_type and $execute are going to use defaults.
 Of course, if we ever get implementation of named parameters, it may also solve this problem, but until we do, this can be a partial solution.  Of course, if we ever get implementation of named parameters, it may also solve this problem, but until we do, this can be a partial solution. 
  
-Only optional parameters can be skipped this way, skipping non-optional one will produce the same error it does now when function is not given engough parameters.+Only declared optional parameters can be skipped this way, skipping non-optional one will produce the same error it does now when function is not given enough parameters. Also, for variadic functions, variadic parameters can not be skipped - only parameters that are explicitly declared and marked optional can be skipped
  
 ===== Implementation ===== ===== Implementation =====
  
-On the engine level, it will be implemented by putting NULL in the place where the parameter is passed. Functions dealing with argument handling will be updated.+On the engine level, it will be implemented by putting IS_UNDEF value in the place where the parameter is passed. Functions dealing with argument handling will be updated.
  
-See example implementation aboveTests for most use cases will be added shortly.+See example implementation at: https://github.com/php/php-src/pull/981 
 + 
 +See tests there for examples of most common uses cases. 
  
 ===== User functions ===== ===== User functions =====
Line 38: Line 39:
 ===== Internal functions ===== ===== Internal functions =====
  
-For internal functions, parameter parser will ignore the NULLs, thus leaving the defaults supplied by the caller intact. Again, skipping non-optional parameter is an error. +For internal functions, parameter parser will ignore the skipped parameters, thus leaving the defaults supplied by the caller intact. Again, skipping non-optional parameter is an error. For variadic parameters, as per above, skipping is not allowed, unless specifically requested by  function declaration
  
-Variadic functions will not return skipped parameters in argc and argveffectively ignoring them, so:+Thusthis code is an error:
  
-       var_dump(2,,1);+       var_dump(2,default,1);
  
-is the same as:+but this is not:
  
-       var_dump(2,1);+       call_user_func('foo', 2, default, 1); 
 + 
 +since call_user_func is specifically described as accepting defaults. 
  
 ===== func_get_args() ===== ===== func_get_args() =====
  
-func_get_args() will skip parameters that are not supplied, so it would provide just the parameters that are actually supplied to the function. Thus, this code: +func_get_args() will use default values for parameters that are not supplied. Because of how PHP 7 engine works, it is not possible to distinguish skipped parameter from parameter where default value is actually passed. 
- +
-     function test($a=1, $b=2, $c=3) { +
-        var_dump(func_get_args()); +
-     } +
- +
-     test(1,,4); +
- +
-will produce: +
- +
-      array(2) { +
-        [0]=> +
-        int(1) +
-        [2]=> +
-        int(4) +
-      } +
- +
-This means that if you are looping over func_get_args() result, you should use foreach() and not counter-based for(). +
-func_num_args() will also ignore skipped parameters and give only the number of parameters actually passed.  +
-func_get_arg() will return false for parameter that was not passed. +
  
 ===== call_user_func_array() ===== ===== call_user_func_array() =====
  
-call_user_func_array() will allow skipping arguments too by skipping them in supplied arguments array, like this:+Currently, call_user_func_array does not support skipping parameters due to the fact that previously it accepted any array as parameters listbut supporting skipping parameters would mean only sequential indexed numeric array will be accepted. 
  
-      call_user_func_array('test', array(42, 2=>43, 4=>44));+===== Internal API changes ===== 
 +Parameters stored as array of zvals n the engine. For skipped parameter, the zval type is stored as IS_UNDEF. 
  
-call_user_func will allow argument skipping directly:+zend_parse_parameter() would ignore parameters marked as skipped/default - meaning, it will not assign any value to the underlying variable. This is unless the parameter is marked as !, in which case the parameter would be nullified just as if null were passed. This means you can not have variables marked as ! with different behavior between null and 'default', but I did not find any such cases to be required. 
  
-      call_user_func('test'42,,44);+If certain function wants to disallow skipping parameters, it should use option ZEND_PARSE_PARAMS_NODEFAULT with zend_parse_parameters_ex(). This may be when internal function has optional arguments but does not have any defaults for them. In this caseskipped parameters will cause a catchable fatal error. 
  
-with the same result.+ZEND_NUM_ARGS() is always the number of parameters in function call, so skipped parameters are counted there
  
 ===== User request examples ===== ===== User request examples =====
Line 93: Line 78:
   * http://stackoverflow.com/q/4681987/214196 (for Delphi)   * http://stackoverflow.com/q/4681987/214196 (for Delphi)
   * http://stackoverflow.com/q/4435918/214196 (for AS)   * http://stackoverflow.com/q/4435918/214196 (for AS)
 +  * http://stackoverflow.com/q/812058/214196 (for Ruby)
 ===== Issues raised ===== ===== Issues raised =====
-    Using "defaultinstead of skipping parameter +    
-    Support for internal functions doing manual ZEND_NUM_ARGS()+Internal functions that declare parameters as optional but fail to provide proper defaults and rely on ZEND_NUM_ARGS to figure out if to use default or not may be broken. The patch fixes all instances of this in the core extensions, but third-party extensions may need to be fixed too. This applies only to ones that check ZEND_NUM_ARGS() manually in the code instead of using zend_parse_parameters(). 
 + 
 +This RFC does not prevent named parameters implementation - in fact, a lot of cleanup to the code mentioned above is also necessary for named parameters implementation, since it would require the same level of care with providing the defaults. Both features can be used in parallel, and thus this RFC is a complimentary functionality for potential named parameters implementation. 
 + 
 +===== Vote ===== 
 + 
 +Since this RFC changes the language semantics, the 2/3+1 vote majority is required for it to pass. The vote is a straight Yes/No vote.  
 + 
 +<doodle title="Should PHP 7 support parameter skipping as described in this RFC?" auth="stas" voteType="single" closed="true"> 
 +   * Yes 
 +   * No 
 +</doodle> 
 + 
 +The vote concludes on the end of the day, PST, February 21th.
  
 ===== Changelog ===== ===== Changelog =====
  
-* 2012-04-13 First draft.+  * 2012-04-13 First draft. 
 +  * 2012-07-07 Changed empty parameter to use 'default' 
 +  * 2013-09-01 Added Zend API description 
 +  * 2015-01-01 Updated for PHPNG
rfc/skipparams.1336778146.txt.gz · Last modified: 2017/09/22 13:28 (external edit)