本文整理匯總了PHP中Func::stringID方法的典型用法代碼示例。如果您正苦於以下問題:PHP Func::stringID方法的具體用法?PHP Func::stringID怎麽用?PHP Func::stringID使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Func
的用法示例。
在下文中一共展示了Func::stringID方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getTransientName
public function getTransientName($name, $context = 'theme')
{
if (!isset($this->{$context}->id)) {
$context = 'theme';
}
$theme_prefix = Func::stringID(substr($this->{$context}->id, 0, self::WP_TRANSIENT_NAME_MAX_LENGTH - 32 - 1), '_') . '_';
$name = Func::stringID($name, '_');
if (strlen($name) > self::WP_TRANSIENT_NAME_MAX_LENGTH - strlen($theme_prefix)) {
$name = md5($name);
}
return $theme_prefix . $name;
}
示例2: makeRadioGroup
public static function makeRadioGroup($name, $value = null, array $options = array(), $separator = '<br />')
{
$fieldset = self::fieldset();
foreach ($options as $option_value => $option_label) {
$radio = self::makeNamed('input', $name, Func::stringID($name . '-' . $option_value))->type('radio')->value($option_value)->checked($value == $option_value);
$label = self::label()->for($radio->id)->add($radio, ' ', $option_label);
$fieldset->add($label, $separator);
}
return $fieldset;
}