不同的MaxLength值

时间:2012-11-10 17:11:12

标签: php textfield maxlength

我的WordPress主题中有一个带有多个文本字段的选项面板。例如:项目标题,项目描述,Twitter用户名等

case 'text':
    $val = $value['std'];
    $std = get_option($value['id']);
    if ( $std != "") { $val = $std; }
    $output .= '<input class="" maxlength="12" name=""'. $value['id'] .'" id="'. $value['id'] .'" type="'. $value['type'] .'" value="'. $val .'" />';
break;

如上面的代码所示...我目前将文本字段的最大长度设置为12,但我希望每个文本字段的最大长度不同。我怎么能这样做?

文本字段的输入ID是mytheme_projectitle1,mytheme_projectitle2,mytheme_projectitle3,mytheme_twitterusername等。我没有任何输入类,只有ID。

1 个答案:

答案 0 :(得分:0)

您可以使用$value['id']访问每个元素的ID,如代码所示。使用它来获得最大长度,例如:

case 'text':
    // Overrides for the default value of maxlength
    $maxlengths = array(
        'mytheme_projecttitle1' => 10,
        'mytheme_projecttitle2' => 20,
    );

    // If there is an override value use it; otherwise use the default of 12
    $maxlen = isset($maxlengths[$value['id']]) ? $maxlengths[$value['id']] : 12;

    $val = $value['std'];
    $std = get_option($value['id']);
    if ( $std != "") { $val = $std; }

    $output .= '<input class="" maxlength="'.$maxlength.'"..."; // the rest as before