ID:          12856
 Updated by:  [email protected]
 Reported By: marcus dot boerger at post dot rwth-aachen dot de
-Status:      Open
+Status:      Wont fix
 Bug Type:    Feature/Change Request
 PHP Version: 4.0.6
 New Comment:

We are sorry, but we can not support PHP 4 related problems anymore.
Momentum is gathering for PHP 6, and we think supporting PHP 4 will
lead to a waste of resources which we want to put into getting PHP 6
ready.




Previous Comments:
------------------------------------------------------------------------

[2009-10-22 11:19:56] felix at littlestarmedia dot com

Ok, I should really test my code properly before posting here - sorry.

This version definitely works!

function CreateYearDropDown($year = 1000.398) {
        
    if ($year == 1000.398) { 
        $year = date(m); 
    }

    //Now Create the month drop down

}

------------------------------------------------------------------------

[2009-10-22 11:12:18] felix at littlestarmedia dot com

eek - sorry, that code should have been:
(double ==)

function CreateYearDropDown($year = 1000.398) {
        
     If ($year == 1000.398) { $year = date(Y); }

     //Now Create the month drop down

}

------------------------------------------------------------------------

[2009-10-22 11:01:08] felix at littlestarmedia dot com

It is possible to have dynamic default values for functions.

Set the default value to something that will never be passed to it and
then test if the variable has that value in it. If it does then apply
your dynamic value from within the function.
If it doesn't have that value then clearly a value has been passed.

E.g.

function CreateYearDropDown($year = 1000.398) {
        
     If ($year = 1000.398) { $year = date(Y); }

     //Now Create the month drop down

}

------------------------------------------------------------------------

[2001-08-20 06:36:12] marcus dot boerger at post dot rwth-aachen dot de

Hi all,

Why is it not possible to have dynamic default function parameters?

This would give the possibility to execute any code snippet when the
default value will be used in a function code.

At current time you can only define
function f( $v=<statis_val>) {
  return $v;
}

return f();
what would result in: <static_val>

BUT sometimes there must be a dynamic part. For example when dealing
with times. Consider the following:
function t( $v=null) {
if ($v===null) $v=time();
return date( "r", $v);
}
return t();
what would return the current time formatted.

With dynamic defaults this would enable the following:
function t($v=time()) {
return date( "r", $v);
}
return t();

Additionally that *should* be used to give access to global variables:
$d = time();
function t($v=$d) {
return date( "r", $v);
}
return t(); // formatted time of script start..or given time

Another good idea would be to execute the variables from within
context:
$d = 1;
function t($v=$d) {
return $v;
}
function t2() {
$d=2;
return t();
}
function t3($v=$GLOBALS['d']) {
return $v;
}
return t();   // --> 1
return t2();  // --> 2
return t3();  // --> 1

greetings marcus

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=12856&edit=1

Reply via email to