将变量传递给php中的函数参数

时间:2015-09-25 10:38:12

标签: php function

我有以下代码,我试图将名为“$ tutorDetailYearOfBirth”的变量传递给函数。

但是,函数keep不会检测$ tutorDetailYearOfBirth的值。

function yearDropdown($startYear, $endYear, $id="yearOfBirth", $match=$tutorDetailYearOfBirth)
{ 
    echo "<select id=".$id." name=".$id." class='form-control'>n"; 
    for ($i=$startYear;$i<=$endYear;$i++){
        //echo "<option value=".$i.">".$i."</option>n"; 
       echo '<option value="'.$i.'" '.(($i==$match)?'selected="selected"':"").'>'.$i.'</option>';
    }
    echo "</select>"; 
}

2 个答案:

答案 0 :(得分:1)

在为函数变量定义默认值时,不能使用变量。您需要将其更改为:

function yearDropdown($startYear, $endYear, $id="yearOfBirth", $match){
   //function code here...
}

yearDropdown($startYear, $endYear, $id, $tutorDetailYearOfBirth);

答案 1 :(得分:0)

您不能将函数声明中的默认值设置为变量..

删除$match =并更新您的功能以使用$tutorDetailYearOfBirth而不是$match

function yearDropdown($startYear, $endYear, $id="yearOfBirth", $tutorDetailYearOfBirth){ 
....