rfc:list_default_value

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
Next revisionBoth sides next revision
rfc:list_default_value [2015/11/09 13:53] reezerfc:list_default_value [2015/11/10 03:22] reeze
Line 9: Line 9:
 We could destruct variables from an array with [[http://php.net/list| list constuct]], it may be nested or a simple array. But there is no guarantee that the array can fulfill all variables, it will be simple assigned with null with notice error (not good). We will need several redundant code to handle the possible cases if we want to check it and assign it with default values.  We could destruct variables from an array with [[http://php.net/list| list constuct]], it may be nested or a simple array. But there is no guarantee that the array can fulfill all variables, it will be simple assigned with null with notice error (not good). We will need several redundant code to handle the possible cases if we want to check it and assign it with default values. 
  
-For the similar purpose we introduced  [[http://php.net/manual/en/language.operators.comparison.php#language.operators.comparison|Null coalesce "??"]] and [[http://php.net/manual/en/language.operators.comparison.php#language.operators.comparison.ternary|Ternary Operator "?:"]] to help write clean code.+For the similar reason we introduced  [[http://php.net/manual/en/language.operators.comparison.php#language.operators.comparison|Null coalesce "??"]] and [[http://php.net/manual/en/language.operators.comparison.php#language.operators.comparison.ternary|Ternary Operator "?:"]] to help write clean code.
  
 Some clever users figured out  some workaround like this  [[http://php.net/manual/en/function.list.php#113189|User contributed notes]]. But that is not good enough and ugly. Some clever users figured out  some workaround like this  [[http://php.net/manual/en/function.list.php#113189|User contributed notes]]. But that is not good enough and ugly.
Line 24: Line 24:
 //  comparation //  comparation
 list($a, list($b=1, $c=2) = $arr; list($a, list($b=1, $c=2) = $arr;
-// opposite we need to+// or we need to check it ourself
 if (!isset($arr[1][0])) { if (!isset($arr[1][0])) {
     $arr[1][0] = 1;     $arr[1][0] = 1;
Line 32: Line 32:
 } }
  
-$list($a, list($b, $c)) = $arr;+list($a, list($b, $c)) = $arr;
  
  
rfc/list_default_value.txt · Last modified: 2017/09/22 13:28 by 127.0.0.1